Merge pull request #7 from x3c3/fix/duplicate-title-bug

Fix critical bug: usedTitles Set never populated
This commit is contained in:
Zac 2025-12-06 17:46:22 -05:00 committed by GitHub
commit 2b5d2a72bf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -46,6 +46,7 @@ export class NotesManager {
title = `${baseTitle} ${counter}`;
counter++;
}
this.usedTitles.add(title);
return normalizePath(title);
}
}