Skip to content

Commit

Permalink
review
Browse files Browse the repository at this point in the history
  • Loading branch information
jgerigmeyer committed Feb 6, 2023
1 parent 7ab59d3 commit 852d997
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/_data/releases.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ module.exports = async () => {
const versions = await Promise.all(
repos.map(async (repo) => [
repo,
cache[repo] ? cache[repo] : await getLatestVersion(repo),
cache[repo] ?? (await getLatestVersion(repo)),
]),
);
const data = Object.fromEntries(
Expand Down

0 comments on commit 852d997

Please sign in to comment.