Skip to content

Commit

Permalink
Fix index
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewKahr committed Jun 5, 2024
1 parent 1473033 commit 7904263
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/src/logic/ingestUnityVersions/scrapeVersions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export const scrapeVersions = async (): Promise<EditorVersionInfo[]> => {
if (matches.length > 0) {
return matches
.filter((match) => {
return match[4].includes('f');
return match[3].includes('f');
})
.map((match) => {
const [_, major, minor, patch, changeSet] = match;
Expand Down

0 comments on commit 7904263

Please sign in to comment.