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 | |
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
-rw-r--r-- | AndroidManifest.xml | 2 | ||||
-rw-r--r-- | src/org/connectbot/service/ConnectionNotifier.java | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 10d7868..d4306c3 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -2,7 +2,7 @@ <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="org.connectbot" android:versionName="1.7-dev" - android:versionCode="241"> + android:versionCode="242"> <application android:icon="@drawable/icon" 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, |