fix: prevent pulling changes for locally managed accounts

This commit is contained in:
hstyi
2025-12-08 14:58:45 +08:00
committed by hstyi
parent bbc64043ed
commit 21c7dd7a42

View File

@@ -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 {