mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-23 21:45:42 +03:00
Dont return success when starting activity
Signed-off-by: Mario Danic <mario@lovelyhq.com>
This commit is contained in:
parent
946d8c6d38
commit
482e91655c
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ public class NotificationJob extends Job {
|
||||||
switch (decryptedPushMessage.getType()) {
|
switch (decryptedPushMessage.getType()) {
|
||||||
case "call":
|
case "call":
|
||||||
context.startActivity(intent);
|
context.startActivity(intent);
|
||||||
return Result.SUCCESS;
|
break;
|
||||||
case "room":
|
case "room":
|
||||||
// do absolutely nothing, we won't even come to this point
|
// do absolutely nothing, we won't even come to this point
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue