disable delivery reports by default as it can cost money

This commit is contained in:
tibbi 2022-02-14 15:35:00 +01:00
parent cdf17cf415
commit e826c3c1d2
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ class Config(context: Context) : BaseConfig(context) {
set(useSimpleCharacters) = prefs.edit().putBoolean(USE_SIMPLE_CHARACTERS, useSimpleCharacters).apply()
var enableDeliveryReports: Boolean
get() = prefs.getBoolean(ENABLE_DELIVERY_REPORTS, true)
get() = prefs.getBoolean(ENABLE_DELIVERY_REPORTS, false)
set(enableDeliveryReports) = prefs.edit().putBoolean(ENABLE_DELIVERY_REPORTS, enableDeliveryReports).apply()
var lockScreenVisibilitySetting: Int