after some testing, lets enable group message MMS sending by default

This commit is contained in:
Tibor Kaputa 2022-04-18 10:05:45 +02:00 committed by GitHub
parent e04433b346
commit 0006076b9b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ class Config(context: Context) : BaseConfig(context) {
set(sendLongMessageMMS) = prefs.edit().putBoolean(SEND_LONG_MESSAGE_MMS, sendLongMessageMMS).apply()
var sendGroupMessageMMS: Boolean
get() = prefs.getBoolean(SEND_GROUP_MESSAGE_MMS, false)
get() = prefs.getBoolean(SEND_GROUP_MESSAGE_MMS, true)
set(sendGroupMessageMMS) = prefs.edit().putBoolean(SEND_GROUP_MESSAGE_MMS, sendGroupMessageMMS).apply()
var lockScreenVisibilitySetting: Int