diff options
author | Kenny Root <kenny@the-b.org> | 2009-12-23 03:12:43 +0000 |
---|---|---|
committer | Kenny Root <kenny@the-b.org> | 2009-12-23 03:12:43 +0000 |
commit | 80c39c679690b1a536ad10e5421323c46ba780ba (patch) | |
tree | 44a8bf22d719d6797e914bb3b68639a8a988541e /src | |
parent | db006adb74813b3ec499c884b412513edfb6945f (diff) | |
download | connectbot-80c39c679690b1a536ad10e5421323c46ba780ba.tar.gz connectbot-80c39c679690b1a536ad10e5421323c46ba780ba.tar.bz2 connectbot-80c39c679690b1a536ad10e5421323c46ba780ba.zip |
Don't set a time on the continuous notification
git-svn-id: https://connectbot.googlecode.com/svn/trunk/connectbot@457 df292f66-193f-0410-a5fc-6d59da041ff2
Diffstat (limited to 'src')
-rw-r--r-- | src/org/connectbot/service/ConnectionNotifier.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/org/connectbot/service/ConnectionNotifier.java b/src/org/connectbot/service/ConnectionNotifier.java index 50b8527..cf166be 100644 --- a/src/org/connectbot/service/ConnectionNotifier.java +++ b/src/org/connectbot/service/ConnectionNotifier.java @@ -71,6 +71,7 @@ public abstract class ConnectionNotifier { notification.flags = Notification.FLAG_ONGOING_EVENT | Notification.FLAG_NO_CLEAR; + notification.when = 0; notification.contentIntent = PendingIntent.getActivity(context, ONLINE_NOTIFICATION, |