diff options
author | Daniel Gultsch <daniel@gultsch.de> | 2016-06-29 17:20:27 +0200 |
---|---|---|
committer | Daniel Gultsch <daniel@gultsch.de> | 2016-06-29 17:20:27 +0200 |
commit | 91c3732c630064b0d23b910b951495c65447e194 (patch) | |
tree | b6008fd31bb0c5f733c35eb3dae2875fe8527c46 | |
parent | f7933c26d7c64edb60e00f83f67b000cd1d7c1cd (diff) |
don't show 'disable foreground service' button. fixes #1933
-rw-r--r-- | src/main/java/eu/siacs/conversations/Config.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/eu/siacs/conversations/Config.java b/src/main/java/eu/siacs/conversations/Config.java index 516ff50f..8ee0ec00 100644 --- a/src/main/java/eu/siacs/conversations/Config.java +++ b/src/main/java/eu/siacs/conversations/Config.java @@ -47,7 +47,7 @@ public final class Config { public static final boolean FORCE_ORBOT = false; // always use TOR public static final boolean HIDE_MESSAGE_TEXT_IN_NOTIFICATION = false; public static final boolean SHOW_CONNECTED_ACCOUNTS = false; //show number of connected accounts in foreground notification - public static final boolean SHOW_DISABLE_FOREGROUND = true; //if set to true the foreground notification has a button to disable it + public static final boolean SHOW_DISABLE_FOREGROUND = false; //if set to true the foreground notification has a button to disable it public static final boolean ALWAYS_NOTIFY_BY_DEFAULT = false; |