From 21c7dd7a42f9526f4a4f0691faadeaded0d2a0b5 Mon Sep 17 00:00:00 2001 From: hstyi Date: Mon, 8 Dec 2025 14:58:45 +0800 Subject: [PATCH] fix: prevent pulling changes for locally managed accounts --- src/main/kotlin/app/termora/account/PullService.kt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/kotlin/app/termora/account/PullService.kt b/src/main/kotlin/app/termora/account/PullService.kt index 848aa04..b63ee01 100644 --- a/src/main/kotlin/app/termora/account/PullService.kt +++ b/src/main/kotlin/app/termora/account/PullService.kt @@ -67,6 +67,11 @@ class PullService private constructor() : SyncService(), Disposable, Application private var lastChangeHash = StringUtils.EMPTY private fun pullChanges() { + + if (accountManager.isLocally()) { + return + } + val hash: String try {