Matthias Nott
2026-03-25 29f7a2c444d60fa155451d7e7f65cf637a1b7f41
lib/providers/providers.dart
....@@ -39,7 +39,9 @@
3939 if (json != null) {
4040 state = ServerConfig.fromJson(jsonDecode(json) as Map<String, dynamic>);
4141 }
42
- } catch (_) {}
42
+ } catch (e) {
43
+ debugPrint('ServerConfig load failed: $e');
44
+ }
4345 }
4446
4547 Future<void> save(ServerConfig config) async {