fix: deps and auto-update check

This commit is contained in:
2026-07-27 22:15:22 +02:00
parent 77c1747b40
commit 1d687235f4
5 changed files with 107 additions and 158 deletions
+2 -1
View File
@@ -21,12 +21,13 @@ class _KoolTabAppState extends State<KoolTabApp> {
}
Future<void> _checkForUpdates() async {
final updater = AppUpdateUtil(serverUrl: "http://localhost:3000/");
final updater = AppUpdateUtil(serverUrl: "http://localhost:3000");
try {
final update = await updater.checkForUpdate();
if (update == null) {
debugPrint("No update available: ");
return;
}