handle deleting

This commit is contained in:
LenAnderson
2023-12-20 17:56:08 +00:00
parent 41a88e165c
commit ac09fa6019
5 changed files with 96 additions and 82 deletions

View File

@ -102,7 +102,8 @@ const loadSettings = async () => {
}
try {
settings = QuickReplySettings.from(extension_settings.quickReplyV2);
} catch {
} catch (ex) {
debugger;
settings = QuickReplySettings.from(defaultSettings);
}
};