From 0a0928e2f6cbba5eff9c19828037cc17c603e576 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?lollipopkit=F0=9F=8F=B3=EF=B8=8F=E2=80=8D=E2=9A=A7?= =?UTF-8?q?=EF=B8=8F?= <10864310+lollipopkit@users.noreply.github.com> Date: Sat, 17 Jan 2026 23:55:41 +0800 Subject: [PATCH] fix: treat empty jumpChainIds as no jump --- lib/data/provider/server/single.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/data/provider/server/single.dart b/lib/data/provider/server/single.dart index 1c8e8407..bb7b9c32 100644 --- a/lib/data/provider/server/single.dart +++ b/lib/data/provider/server/single.dart @@ -135,7 +135,7 @@ class ServerNotifier extends _$ServerNotifier { final time2 = DateTime.now(); final spentTime = time2.difference(time1).inMilliseconds; - if (spi.jumpChainIds == null && spi.jumpId == null) { + if ((spi.jumpChainIds?.isNotEmpty != true) && spi.jumpId == null) { Loggers.app.info('Connected to ${spi.name} in $spentTime ms.'); } else { Loggers.app.info('Jump to ${spi.name} in $spentTime ms.');