From d79b7cf500df28fa0b8c4051721287e1ff1ca808 Mon Sep 17 00:00:00 2001 From: hailin Date: Sat, 7 Mar 2026 09:45:20 -0800 Subject: [PATCH] fix(mobile): fix telemetry import path in self_hosted_updater MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ../../../ → ../../ (channels/ → updater/ → core/, not lib/) Co-Authored-By: Claude Sonnet 4.6 --- .../lib/core/updater/channels/self_hosted_updater.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/genex-mobile/lib/core/updater/channels/self_hosted_updater.dart b/frontend/genex-mobile/lib/core/updater/channels/self_hosted_updater.dart index f7f663e..fb27e1e 100644 --- a/frontend/genex-mobile/lib/core/updater/channels/self_hosted_updater.dart +++ b/frontend/genex-mobile/lib/core/updater/channels/self_hosted_updater.dart @@ -7,7 +7,7 @@ import '../download_manager.dart'; import '../apk_installer.dart'; import '../app_market_detector.dart'; import '../models/version_info.dart'; -import '../../../telemetry/telemetry_service.dart'; +import '../../telemetry/telemetry_service.dart'; /// 自建服务器更新器 class SelfHostedUpdater {