Skip to content

Commit 2b65ebc

Browse files
committed
lower the default MMS file size limit to 600kb
1 parent 5943108 commit 2b65ebc

File tree

1 file changed

+1
-1
lines changed
  • app/src/main/kotlin/com/simplemobiletools/smsmessenger/helpers

1 file changed

+1
-1
lines changed

app/src/main/kotlin/com/simplemobiletools/smsmessenger/helpers/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class Config(context: Context) : BaseConfig(context) {
3333
set(lockScreenVisibilitySetting) = prefs.edit().putInt(LOCK_SCREEN_VISIBILITY, lockScreenVisibilitySetting).apply()
3434

3535
var mmsFileSizeLimit: Long
36-
get() = prefs.getLong(MMS_FILE_SIZE_LIMIT, FILE_SIZE_1_MB)
36+
get() = prefs.getLong(MMS_FILE_SIZE_LIMIT, FILE_SIZE_600_KB)
3737
set(mmsFileSizeLimit) = prefs.edit().putLong(MMS_FILE_SIZE_LIMIT, mmsFileSizeLimit).apply()
3838

3939
var pinnedConversations: Set<String>

0 commit comments

Comments
 (0)