shell-mirror 1.5.19 → 1.5.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/auto-start.js +2 -2
- package/package.json +1 -1
package/lib/auto-start.js
CHANGED
|
@@ -39,8 +39,8 @@ class AutoStart {
|
|
|
39
39
|
return;
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
-
// Start the server
|
|
43
|
-
await this.
|
|
42
|
+
// Start the server with WebSocket integration
|
|
43
|
+
await this.startAuthenticatedServer(authInfo);
|
|
44
44
|
|
|
45
45
|
} catch (error) {
|
|
46
46
|
console.error('❌ Failed to start Shell Mirror:', error.message);
|
package/package.json
CHANGED