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 fd7ed18 commit d397e5aCopy full SHA for d397e5a
js/background/background.js
@@ -1024,6 +1024,10 @@ async function handleImportNewSession(urlList) {
1024
async function handleUpdateSessionName(sessionId, sessionName, deleteOld) {
1025
// check to make sure session name doesn't already exist
1026
const existingSession = await dbService.fetchSessionByName(sessionName);
1027
+ // Fix: allow renaming when only capitalization is changed
1028
+if (existingSession && existingSession.id === sessionId) {
1029
+ return spacesService.updateSessionName(sessionId, sessionName) ?? false;
1030
+}
1031
1032
// if session with same name already exist, then prompt to override the existing session
1033
if (existingSession) {
0 commit comments