From 306fd415a0163f565f0b03666f8a66681f6e4b45 Mon Sep 17 00:00:00 2001 From: Nathaniel Wesley Filardo Date: Sat, 28 Sep 2019 15:24:29 +0100 Subject: [PATCH] MainServiceNotification: last source is NONE, not FLAG Prevent a "Flag caputred! 0 0" message --- .../ctfwstimer/service/MainServiceNotification.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/src/main/java/com/acmetensortoys/ctfwstimer/service/MainServiceNotification.java b/mobile/src/main/java/com/acmetensortoys/ctfwstimer/service/MainServiceNotification.java index 5fbe85a..8c1ed21 100644 --- a/mobile/src/main/java/com/acmetensortoys/ctfwstimer/service/MainServiceNotification.java +++ b/mobile/src/main/java/com/acmetensortoys/ctfwstimer/service/MainServiceNotification.java @@ -271,7 +271,7 @@ class MainServiceNotification { mService.bindService(new Intent(mService, MainService.class), userNoteSC, Context.BIND_AUTO_CREATE); } - lastContextTextSource = LastContentTextSource.FLAG; + lastContextTextSource = LastContentTextSource.NONE; userNoteBuilder.setContentText(null); refreshNotification(); } -- 2.50.1