mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-07-08 12:50:29 +03:00
remove useless code
This commit is contained in:
parent
5aa8cd909f
commit
efbfbfbc2f
1 changed files with 1 additions and 17 deletions
|
@ -15,7 +15,6 @@ package app.fedilab.android.mastodon.helper;
|
||||||
* see <http://www.gnu.org/licenses>. */
|
* see <http://www.gnu.org/licenses>. */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
|
@ -69,7 +68,7 @@ public class PushHelper {
|
||||||
AlertDialog.Builder alert = new MaterialAlertDialogBuilder(context);
|
AlertDialog.Builder alert = new MaterialAlertDialogBuilder(context);
|
||||||
alert.setTitle(R.string.no_distributors_found);
|
alert.setTitle(R.string.no_distributors_found);
|
||||||
final TextView message = new TextView(context);
|
final TextView message = new TextView(context);
|
||||||
String link = "https://ntfy.sh/";
|
String link = "https://fedilab.app/docs/fedilab/faq/";
|
||||||
final SpannableString s =
|
final SpannableString s =
|
||||||
new SpannableString(context.getString(R.string.no_distributors_explanation, link));
|
new SpannableString(context.getString(R.string.no_distributors_explanation, link));
|
||||||
Linkify.addLinks(s, Linkify.WEB_URLS);
|
Linkify.addLinks(s, Linkify.WEB_URLS);
|
||||||
|
@ -164,7 +163,6 @@ public class PushHelper {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Handler mainHandler = new Handler(Looper.getMainLooper());
|
Handler mainHandler = new Handler(Looper.getMainLooper());
|
||||||
|
|
||||||
String finalVapid = vapid!=null?vapid.replaceAll("=",""):null;
|
String finalVapid = vapid!=null?vapid.replaceAll("=",""):null;
|
||||||
Runnable myRunnable = () -> {
|
Runnable myRunnable = () -> {
|
||||||
try {
|
try {
|
||||||
|
@ -176,20 +174,6 @@ public class PushHelper {
|
||||||
mainHandler.post(myRunnable);
|
mainHandler.post(myRunnable);
|
||||||
}).start();
|
}).start();
|
||||||
}
|
}
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
AlertDialog.Builder alert = new MaterialAlertDialogBuilder(context);
|
|
||||||
alert.setTitle(R.string.select_distributors);
|
|
||||||
String[] distributorsStr = distributors.toArray(new String[0]);
|
|
||||||
alert.setSingleChoiceItems(distributorsStr, -1, (dialog, item) -> {
|
|
||||||
String distributor = distributorsStr[item];
|
|
||||||
UnifiedPush.saveDistributor(context, distributor);
|
|
||||||
for (BaseAccount account : accounts) {
|
|
||||||
UnifiedPush.register(context, account.user_id + "@" + account.instance, null, null);
|
|
||||||
}
|
|
||||||
dialog.dismiss();
|
|
||||||
});
|
|
||||||
alert.show();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue