after some testing, lets enable group message MMS sending by default
This commit is contained in:
parent
e04433b346
commit
0006076b9b
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue