Skip to content

Commit

Permalink
Set the default MMS size back to 300kb
Browse files Browse the repository at this point in the history
  • Loading branch information
moezbhatti committed Jan 25, 2020
1 parent ccefa08 commit c0b2f61
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion domain/src/main/java/com/moez/QKSMS/util/Preferences.kt
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class Preferences @Inject constructor(
val unicode = rxPrefs.getBoolean("unicode", false)
val mobileOnly = rxPrefs.getBoolean("mobileOnly", false)
val longAsMms = rxPrefs.getBoolean("longAsMms", false)
val mmsSize = rxPrefs.getInteger("mmsSize", -1)
val mmsSize = rxPrefs.getInteger("mmsSize", 300)
val logging = rxPrefs.getBoolean("logging", false)

init {
Expand Down

0 comments on commit c0b2f61

Please sign in to comment.