mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-20 12:09:45 +01:00
Fixes various issues
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
a520cd4716
commit
842f2c2380
@ -267,7 +267,7 @@ public class NotificationWorker extends Worker {
|
||||
intent.setAction(Long.toString(System.currentTimeMillis()));
|
||||
|
||||
PendingIntent pendingIntent = PendingIntent.getActivity(context,
|
||||
0, intent, PendingIntent.FLAG_ONE_SHOT);
|
||||
0, intent, 0);
|
||||
|
||||
NotificationManagerCompat notificationManager = NotificationManagerCompat.from(context);
|
||||
Uri uri = Uri.parse(signatureVerification.getUserEntity().getBaseUrl());
|
||||
@ -458,7 +458,7 @@ public class NotificationWorker extends Worker {
|
||||
intent = new Intent(context, MainActivity.class);
|
||||
}
|
||||
|
||||
intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_SINGLE_TOP);
|
||||
intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
|
||||
|
||||
if (!signatureVerification.getUserEntity().hasSpreedCapabilityWithName
|
||||
("no-ping")) {
|
||||
|
Loading…
Reference in New Issue
Block a user