Skip to content

Commit

Permalink
fix syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
kevodwyer committed Dec 16, 2024
1 parent 0cb6573 commit d464852
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion vendor/priors/gwt.js
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,9 @@ opfsWorker.onmessage = function(event) { // reads
);
} else {
console.log('getOPFSKV NOT found in cache. filename:' + message.filename);
pendingFuture.complete(peergos.client.JsUtil.emptyOptional())
pendingFutures.forEach(pendingFuture =>
pendingFuture.complete(peergos.client.JsUtil.emptyOptional())
);
}
} else {
if (message.contents == null) {
Expand Down

0 comments on commit d464852

Please sign in to comment.