0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2024-12-22 13:22:58 -05:00

Fix error

This commit is contained in:
dragongoose 2023-11-25 18:39:45 -05:00
parent 54f9771283
commit 9907ade569
No known key found for this signature in database
GPG key ID: 01397EEC371CDAA5

View file

@ -186,7 +186,7 @@ export function getSetting(key: string): boolean | string {
parsed = JSON.parse(storage)
}
return parsed[key].selected
return parsed.settings[key].selected
}
/**