Skip to content

Commit

Permalink
Revert "fix: missing return"
Browse files Browse the repository at this point in the history
This reverts commit 252f0ab.
  • Loading branch information
chrispader committed Apr 2, 2024
1 parent 252f0ab commit c1ca79b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/actions/OnyxUpdateManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function validateAndApplyDeferredUpdates(): Promise<Response[] | void> {
}

// Then we can fetch the missing updates and apply them
return App.getMissingOnyxUpdates(lastUpdateIDAppliedToClient, latestMissingUpdateID).then(validateAndApplyDeferredUpdates).then(resolve).catch(reject);
App.getMissingOnyxUpdates(lastUpdateIDAppliedToClient, latestMissingUpdateID).then(validateAndApplyDeferredUpdates).then(resolve).catch(reject);
});
});
}
Expand Down

0 comments on commit c1ca79b

Please sign in to comment.