shell-mirror 1.5.95 → 1.5.97

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shell-mirror",
3
- "version": "1.5.95",
3
+ "version": "1.5.97",
4
4
  "description": "Access your Mac shell from any device securely. Perfect for mobile coding with Claude Code CLI, Gemini CLI, and any shell tool.",
5
5
  "main": "server.js",
6
6
  "bin": {
@@ -946,7 +946,7 @@ class ShellMirrorDashboard {
946
946
  if (response.ok) {
947
947
  const data = await response.json();
948
948
  console.log('[DASHBOARD] 🔍 Ping response:', data);
949
- return data.success && data.reachable;
949
+ return data.success && data.data && data.data.reachable;
950
950
  }
951
951
 
952
952
  console.log('[DASHBOARD] ⚠️ Ping request failed:', response.status);