Skip to content

Commit 96c570f

Browse files
committed
Fix isStandalone
1 parent 081ec33 commit 96c570f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/webwindow.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ class WebWindowHandle {
529529
}
530530

531531
/** @summary Standalone mode without server connection */
532-
isStandalone() { this.kind === 'file'; }
532+
isStandalone() { return this.kind === 'file'; }
533533

534534
/** @summary Returns true if socket connected */
535535
isConnected() { return this.state > 0; }

0 commit comments

Comments
 (0)