From dd73b933d9aec509b7c7958e25961f1529c823c7 Mon Sep 17 00:00:00 2001 From: hstyi Date: Thu, 14 Aug 2025 17:41:32 +0800 Subject: [PATCH] fix: some data cannot be pulled --- src/main/kotlin/app/termora/account/PullService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/app/termora/account/PullService.kt b/src/main/kotlin/app/termora/account/PullService.kt index 03f5ae8..56e9fc2 100644 --- a/src/main/kotlin/app/termora/account/PullService.kt +++ b/src/main/kotlin/app/termora/account/PullService.kt @@ -126,7 +126,7 @@ class PullService private constructor() : SyncService(), Disposable, Application while (true) { val request = Request.Builder() .get() - .url("${accountManager.getServer()}/v1/data/changes?since=${since}&after=${after}&limit=${limit}") + .url("${accountManager.getServer()}/v1/data/changes?since=${nextSince}&after=${after}&limit=${limit}") .build() val text = AccountHttp.execute(request = request) val response = ohMyJson.decodeFromString(text)