From 540a4ca17f58d760892fff11b9ecfc0635ae5cf1 Mon Sep 17 00:00:00 2001 From: Liran Cohen Date: Tue, 13 Aug 2024 11:01:12 -0400 Subject: [PATCH] sync all protocols temporarily --- packages/api/src/web5.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/api/src/web5.ts b/packages/api/src/web5.ts index 0ee592270..80c355d38 100644 --- a/packages/api/src/web5.ts +++ b/packages/api/src/web5.ts @@ -397,7 +397,7 @@ export class Web5 { // Enable sync, unless explicitly disabled. if (sync !== 'off') { // First, register the user identity for sync. - await userAgent.sync.registerIdentity({ did: connectedDid }); + await userAgent.sync.registerIdentity({ did: connectedDid, options: { protocols: [] } }); // Enable sync using the specified interval or default. sync ??= '2m';