We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11105b0 commit 25b61c3Copy full SHA for 25b61c3
src/store/Accounts.ts
@@ -336,7 +336,11 @@ export class Accounts implements IModule {
336
new Encryption(wordArray.toString())
337
);
338
// if not uuidv4 regen
339
- if (/[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}/i.test(entry.hash)) {
+ if (
340
+ /[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}/i.test(
341
+ entry.hash
342
+ )
343
+ ) {
344
removeHashes.push(entry.hash);
345
entry.genUUID();
346
}
0 commit comments