shell-mirror 1.5.96 → 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 +1 -1
- package/public/app/dashboard.js +1 -1
package/package.json
CHANGED
package/public/app/dashboard.js
CHANGED
|
@@ -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);
|