Skip to content

Commit

Permalink
fix: Optfine cannot be searched
Browse files Browse the repository at this point in the history
  • Loading branch information
ci010 committed Jan 10, 2024
1 parent 5335911 commit 76ad549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xmcl-keystone-ui/src/composables/useAggregateProjects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function useProjectsFilterSearch<T extends ProjectEntry>(
? items.value.filter(p => {
if (!isCurseforgeActive.value && p.curseforge) return false
if (!isModrinthActive.value && p.modrinth) return false
return p.curseforge || p.modrinth
return p.curseforge || p.modrinth || p.id === 'OptiFine'
})
: items.value

Expand Down

0 comments on commit 76ad549

Please sign in to comment.