mirror of
https://github.com/revanced/revanced-manager
synced 2024-05-14 13:56:57 +02:00
fix(export-settings): remove boolean workaround
This commit is contained in:
parent
8fd4fe0e55
commit
2ad106f7d7
@ -30,10 +30,7 @@ class ExportSettingsActivity : Activity() {
|
||||
val sharedPreferences = getSharedPreferences("FlutterSharedPreferences", Context.MODE_PRIVATE)
|
||||
val allEntries: Map<String, *> = sharedPreferences.getAll()
|
||||
for ((key, value) in allEntries.entries) {
|
||||
json.put(
|
||||
key.replace("flutter.", ""),
|
||||
if (value is Boolean) if (value) 1 else 0 else value
|
||||
)
|
||||
json.put(key.replace("flutter.", ""), value)
|
||||
}
|
||||
|
||||
// Load keystore
|
||||
|
Loading…
Reference in New Issue
Block a user