From 0d4c6555b8374163a69aa153634a7f1bfb4f1909 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Wed, 13 Mar 2013 18:47:22 -0700 Subject: [PATCH] Minor bug fix to notification sounds --- .../plugin-src/com/todoroo/astrid/reminders/Notifications.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrid/plugin-src/com/todoroo/astrid/reminders/Notifications.java b/astrid/plugin-src/com/todoroo/astrid/reminders/Notifications.java index 3bf26e537..e77dd7071 100644 --- a/astrid/plugin-src/com/todoroo/astrid/reminders/Notifications.java +++ b/astrid/plugin-src/com/todoroo/astrid/reminders/Notifications.java @@ -371,7 +371,7 @@ public class Notifications extends BroadcastReceiver { } else { notification.sound = null; } - } else { + } else if (soundIntervalOk) { notification.defaults |= Notification.DEFAULT_SOUND; } }