From baa919350e5aa57ae58ba21ecd62d8631007b707 Mon Sep 17 00:00:00 2001 From: Nathaniel Wesley Filardo Date: Sat, 27 Oct 2018 17:54:45 +0100 Subject: [PATCH] Set notification source for end of game The vibration pattern was erroneously inherited from whatever had come before. --- .../com/acmetensortoys/ctfwstimer/MainServiceNotification.java | 1 + 1 file changed, 1 insertion(+) diff --git a/mobile/src/main/java/com/acmetensortoys/ctfwstimer/MainServiceNotification.java b/mobile/src/main/java/com/acmetensortoys/ctfwstimer/MainServiceNotification.java index a1e21e1..e9cd115 100644 --- a/mobile/src/main/java/com/acmetensortoys/ctfwstimer/MainServiceNotification.java +++ b/mobile/src/main/java/com/acmetensortoys/ctfwstimer/MainServiceNotification.java @@ -114,6 +114,7 @@ class MainServiceNotification { // game no longer afoot if (now.past) { + notifyUserSomehow(NotificationSource.BREAK); userNoteBuilder.setUsesChronometer(false); userNoteBuilder.setShowWhen(false); userNoteBuilder.setContentTitle(txt); -- 2.50.1