Patch empty appData

This commit is contained in:
Kieran 2023-09-25 09:41:22 +01:00
parent 80736cc5dd
commit 2833813ef3
Signed by: Kieran
GPG Key ID: DE71CEB3925BE941

View File

@ -77,6 +77,12 @@ export class MultiAccountStore extends ExternalStore<LoginSession> {
if (v.type === LoginSessionType.PrivateKey && v.readonly) {
v.readonly = false;
}
v.appData ??= {
item: {
mutedWords: []
},
timestamp: 0
}
}
}