remove unnecessary suspend

This commit is contained in:
davotoula
2025-10-06 18:52:14 +02:00
parent 341994e505
commit 701acb004f

View File

@@ -389,7 +389,7 @@ object LocalPreferences {
suspend fun loadAccountConfigFromEncryptedStorage(): AccountSettings? = currentAccount()?.let { loadAccountConfigFromEncryptedStorage(it) } suspend fun loadAccountConfigFromEncryptedStorage(): AccountSettings? = currentAccount()?.let { loadAccountConfigFromEncryptedStorage(it) }
suspend fun saveSharedSettings( fun saveSharedSettings(
sharedSettings: UiSettings, sharedSettings: UiSettings,
prefs: SharedPreferences = encryptedPreferences(), prefs: SharedPreferences = encryptedPreferences(),
) { ) {
@@ -399,7 +399,7 @@ object LocalPreferences {
} }
} }
suspend fun loadSharedSettings(prefs: SharedPreferences = encryptedPreferences()): UiSettings? { fun loadSharedSettings(prefs: SharedPreferences = encryptedPreferences()): UiSettings? {
Log.d("LocalPreferences", "Load shared settings") Log.d("LocalPreferences", "Load shared settings")
with(prefs) { with(prefs) {
return try { return try {