Skip to content

Commit 63f5e53

Browse files
committed
fix: do not wait for infura in blob sync
1 parent 3e53654 commit 63f5e53

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/identities/identity/utils/blob-store.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,8 @@ class BlobStore {
110110
// Attempt to pin the blob && ensure it's on infura
111111
try {
112112
await this.#ipfs.pin.add(ref.hash);
113-
await this.#maybeAddToInfura(key, ref.hash).catch((err) => console.warn(`Unable to check and add "${key}" to infura`, err));
113+
114+
this.#maybeAddToInfura(key, ref.hash).catch((err) => console.warn(`Unable to check and add "${key}" to infura`, err));
114115

115116
updatedRef = {
116117
...ref,

0 commit comments

Comments
 (0)