aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-10-15 15:07:23 -0400
committerGitHub <noreply@github.com>2017-10-15 15:07:23 -0400
commitd08fd6f8d24430594d63e808740289d395f7227d (patch)
tree9dd5befd270427413a2735d88b4897532b66d7a6 /app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
parenta4b3e990228c90c53eaf3ca1424a1e5f6d582d07 (diff)
downloadfrost-d08fd6f8d24430594d63e808740289d395f7227d.tar.gz
frost-d08fd6f8d24430594d63e808740289d395f7227d.tar.bz2
frost-d08fd6f8d24430594d63e808740289d395f7227d.zip
Enhancement/notifications (#416)
* Update notification defaults * Setup initial channel test
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt b/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
index 46830e65..dbace074 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/utils/Prefs.kt
@@ -39,7 +39,7 @@ object Prefs : KPref() {
var exitConfirmation: Boolean by kpref("exit_confirmation", true)
- var notificationFreq: Long by kpref("notification_freq", -1L)
+ var notificationFreq: Long by kpref("notification_freq", 60L)
var versionCode: Int by kpref("version_code", -1)
@@ -104,7 +104,7 @@ object Prefs : KPref() {
var notificationAllAccounts: Boolean by kpref("notification_all_accounts", true)
- var notificationsInstantMessages: Boolean by kpref("notification_im", false)
+ var notificationsInstantMessages: Boolean by kpref("notification_im", true)
var notificationsImAllAccounts: Boolean by kpref("notification_im_all_accounts", false)