fix: CloudService silent error → logging, Status zeigt Token-Fehler an

This commit is contained in:
Dustin
2026-08-01 18:15:04 +02:00
parent a7dbf5e9e1
commit ac543eb84b
2 changed files with 5 additions and 2 deletions
+1 -1
View File
@@ -89,8 +89,8 @@ class _CloudScreenState extends State<CloudScreen> {
if (!mounted) return;
setState(() {
_serverCount = st?['total'] ?? 0;
_status = st != null ? 'Verbunden' : 'Keine Verbindung';
_statusOk = st != null;
_status = st != null ? 'Verbunden' : 'Keine Verbindung (Token?)';
});
}