Add missing await in storage service code
This commit is contained in:
parent
19f7bff8a3
commit
495eca4e78
1 changed files with 1 additions and 1 deletions
|
@ -1080,7 +1080,7 @@ async function fetchManifest(
|
|||
const encryptedManifest = Proto.StorageManifest.decode(manifestBinary);
|
||||
|
||||
try {
|
||||
return decryptManifest(encryptedManifest);
|
||||
return await decryptManifest(encryptedManifest);
|
||||
} catch (err) {
|
||||
await stopStorageServiceSync(err);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue