From febd9cc3e0c52442339e802f509de7c72419f79a Mon Sep 17 00:00:00 2001 From: Daniel Gultsch Date: Sun, 16 Sep 2018 10:07:33 +0200 Subject: [PATCH] fixed regression that would not dismiss video encoding notification --- .../eu/siacs/conversations/services/XmppConnectionService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/eu/siacs/conversations/services/XmppConnectionService.java b/src/main/java/eu/siacs/conversations/services/XmppConnectionService.java index fc43adb5f..0b1d5ad71 100644 --- a/src/main/java/eu/siacs/conversations/services/XmppConnectionService.java +++ b/src/main/java/eu/siacs/conversations/services/XmppConnectionService.java @@ -1091,9 +1091,9 @@ public class XmppConnectionService extends Service { status = true; } else { stopForeground(true); - mNotificationService.dismissForcedForegroundNotification(); //if the channel was changed the previous call might fail status = false; } + mNotificationService.dismissForcedForegroundNotification(); //if the channel was changed the previous call might fail Log.d(Config.LOGTAG,"ForegroundService: "+(status?"on":"off")); }