Skip to content

Commit e23ea21

Browse files
committed
Remove TESTME lines
1 parent 57df571 commit e23ea21

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [1.1.8] - 2025-11-30
5+
## [1.1.8] - 2025-??-??
66

77
### Changes
88

99
- Fixed [issue #31](https://github.com/codedread/spaces/issues/31): Allow changing the capitalization of space names.
10+
- Fixed [issue #25](https://github.com/codedread/spaces/issues/25): Restore window ids from lost sessions in the db.
1011
- Increased unit test coverage from 16.17% to 22.69%.
11-
-
12+
1213
## [1.1.7] - 2025-10-01
1314

1415
### Changes

js/background/background.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1065,7 +1065,6 @@ async function handleUpdateSessionName(sessionId, sessionName, deleteOld) {
10651065

10661066
// If a different session with same name already exists, then prompt to
10671067
// override the existing session.
1068-
// TESTME: Only delete if session ids differ.
10691068
if (existingSession && existingSession.id !== sessionId) {
10701069
if (!deleteOld) {
10711070
console.error(

js/popup.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,6 @@ export async function handleNameSave() {
221221
// two spaces to have case-insensitive identical names (e.g. "main" and "Main"). If the new
222222
// name is a case-insensitive match of the previous name of the current session, we do not need
223223
// to check for overwrite, we just let the capitalization change happen.
224-
// TESTME: Save should occur when the name is a case-insensitive match of the previous name and
225-
// the requestSessionPresence message should not be sent.
226224
const caseInsensitiveMatch = globalCurrentSpace?.name
227225
&& globalCurrentSpace.name.toLowerCase() === newName.toLowerCase();
228226
const canOverwrite = caseInsensitiveMatch || await checkSessionOverwrite(newName);

js/spaces.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -330,8 +330,6 @@ export async function handleNameSave() {
330330
// Spaces are looked up in the database by case-insensitive name. That means we do not allow
331331
// two spaces to have case-insensitive identical names (e.g. "main" and "Main"). If the new
332332
// name is a case-insensitive match of the previous name, we do not need to check overwrite.
333-
// TESTME: Save should occur when the name is a case-insensitive match of the previous name and
334-
// the requestSessionPresence message should not be sent.
335333
const caseInsensitiveMatch = name && name.toLowerCase() === newName.toLowerCase();
336334
const canOverwrite = caseInsensitiveMatch || await checkSessionOverwrite(newName);
337335
if (!canOverwrite) {

0 commit comments

Comments
 (0)