Skip to content

Commit

Permalink
Revert treshold back to 0.25 (cross-seed#498)
Browse files Browse the repository at this point in the history
Self explanatory, was 0.25 before the rss prefiltering pr
  • Loading branch information
mmgoodnow authored Sep 28, 2023
2 parents e4fcaef + 918469a commit 6abb72e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/torrent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ export async function getTorrentByFuzzyName(
const potentialMatches = new Fuse(filteredNames, {
keys: ["name"],
distance: 6,
threshold: 0.6,
threshold: 0.25,
}).search(name);

// Valid matches exist
Expand Down

0 comments on commit 6abb72e

Please sign in to comment.