From a56ef1fe115c540fd67d2aac7742bbe0e25c5586 Mon Sep 17 00:00:00 2001 From: Abdullah Atta Date: Sat, 11 Apr 2026 10:54:26 +0500 Subject: [PATCH] sync: reduce chunk size to 3MB this will increase the number of round trips but will make the sync more reliable on slow devices that take longer to process 7MB chunks. --- Notesnook.API/Hubs/SyncV2Hub.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notesnook.API/Hubs/SyncV2Hub.cs b/Notesnook.API/Hubs/SyncV2Hub.cs index f81e7cd..f3b625c 100644 --- a/Notesnook.API/Hubs/SyncV2Hub.cs +++ b/Notesnook.API/Hubs/SyncV2Hub.cs @@ -257,7 +257,7 @@ namespace Notesnook.API.Hubs ids, size: 100, resetSync: device.IsSyncReset, - maxBytes: 7 * 1024 * 1024 + maxBytes: 3 * 1024 * 1024 ); await foreach (var chunk in chunks)