Merge branch 'dev' into on-2

This commit is contained in:
Andrew
2024-05-08 15:59:53 +09:30
14 changed files with 71 additions and 33 deletions

View File

@@ -847,7 +847,7 @@ interface TextSecurePreferences {
getDefaultSharedPreferences(context).edit().putString(key, value).apply()
}
private fun getIntegerPreference(context: Context, key: String, defaultValue: Int): Int {
fun getIntegerPreference(context: Context, key: String, defaultValue: Int): Int {
return getDefaultSharedPreferences(context).getInt(key, defaultValue)
}