From 693311a3db4384dfee0d8decd4a93532b362557d Mon Sep 17 00:00:00 2001 From: 01zulfi <85733202+01zulfi@users.noreply.github.com> Date: Wed, 20 Aug 2025 11:22:49 +0500 Subject: [PATCH] core: use RequestFetchV2 hub method (#8483) Signed-off-by: 01zulfi <85733202+01zulfi@users.noreply.github.com> --- packages/core/src/api/sync/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/core/src/api/sync/index.ts b/packages/core/src/api/sync/index.ts index 6698dd052..995389f23 100644 --- a/packages/core/src/api/sync/index.ts +++ b/packages/core/src/api/sync/index.ts @@ -233,7 +233,7 @@ class Sync { async fetch(deviceId: string, options: SyncOptions) { await this.checkConnection(); - await this.connection?.invoke("RequestFetch", deviceId); + await this.connection?.invoke("RequestFetchV2", deviceId); if (this.conflictedNoteIds.length > 0) { await this.db