mirror of
https://github.com/libre-tube/LibreTube.git
synced 2025-04-28 07:50:31 +05:30
Merge pull request #2358 from Bnyro/master
prioritorize `long` over `int` on restoring settings backup
This commit is contained in:
commit
65592658c7
@ -93,8 +93,8 @@ class BackupHelper(private val context: Context) {
|
||||
when (it.value) {
|
||||
is Boolean -> putBoolean(it.key, it.value)
|
||||
is Float -> putFloat(it.key, it.value)
|
||||
is Int -> putInt(it.key, it.value)
|
||||
is Long -> putLong(it.key, it.value)
|
||||
is Int -> putInt(it.key, it.value)
|
||||
is String -> putString(it.key, it.value)
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user