mirror of
https://github.com/smartfrigde/armcord.git
synced 2024-08-14 23:56:58 +00:00
Fix corrupted settings checker
This commit is contained in:
parent
495a813af1
commit
1666b8a098
1 changed files with 1 additions and 1 deletions
|
@ -21,7 +21,7 @@ export async function sleep(ms: number) {
|
|||
}
|
||||
|
||||
export async function checkIfConfigIsBroken() {
|
||||
if ((await getConfig("0")) == "d") {
|
||||
if (await getConfig("0") == "d") {
|
||||
console.log("Detected a corrupted config");
|
||||
setup();
|
||||
dialog.showErrorBox(
|
||||
|
|
Loading…
Reference in a new issue