change the default week end to 23:00

This commit is contained in:
tibbi 2017-01-22 17:29:22 +01:00
parent d8b0a29905
commit 3fc8f0fc62
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ class Config(context: Context) : BaseConfig(context) {
set(startWeeklyAt) = prefs.edit().putInt(START_WEEKLY_AT, startWeeklyAt).apply()
var endWeeklyAt: Int
get() = prefs.getInt(END_WEEKLY_AT, 24)
get() = prefs.getInt(END_WEEKLY_AT, 23)
set(endWeeklyAt) = prefs.edit().putInt(END_WEEKLY_AT, endWeeklyAt).apply()
var vibrateOnReminder: Boolean