From a84384df34fd5d0927d084bc69b1bd02ac05390a Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Wed, 10 Dec 2025 07:49:43 -0800 Subject: [PATCH] Fix URL update script --- tool/brand.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tool/brand.dart b/tool/brand.dart index 165fdf7..4dfed41 100644 --- a/tool/brand.dart +++ b/tool/brand.dart @@ -83,8 +83,8 @@ Future _updateVersion(String version) async { Future _updateUrl(String url) async { await _replaceInFile( - 'lib/screens/main_screen.dart', - RegExp(r'https://demo\.traccar\.org'), + 'lib/preferences.dart', + RegExp(r'https://demo\.traccar\.org:5055'), url, ); }