From 167dfdcb026aa80b16d7aa14cf6bad8a33abc8f7 Mon Sep 17 00:00:00 2001 From: zakary Date: Sat, 9 Dec 2023 11:08:10 -0600 Subject: [PATCH] fix(options): fuzzySizeThreshold incorrect usage and broken link --- docs/basics/options.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/docs/basics/options.md b/docs/basics/options.md index 367df3f..10f41cb 100644 --- a/docs/basics/options.md +++ b/docs/basics/options.md @@ -572,11 +572,9 @@ includeNonVideos: false, Increase this number to reject fewer torrents based on size. There is no guarantee that it will increase your match rate. -https://github.com/cross-seed/cross-seed/blob/port-docs-from-wiki/src/decide.ts#L70-L87 - :::caution -This option has very limited utility and under normal operation, does not need +This option has very limited utility and under normal operation does not need to be modified. ::: @@ -584,15 +582,14 @@ to be modified. #### `fuzzySizeThreshold` Examples (CLI) ```shell -cross-seed search -d 10 -cross-seed search --fuzzy-size-threshold 3 -cross-seed daemon -d 5 +cross-seed search --fuzzy-size-threshold 0.02 +cross-seed daemon --fuzzy-size-threshold 0.02 ``` #### `fuzzySizeThreshold` Examples (Config file) ```js -fuzzySizeThreshold: 20, +fuzzySizeThreshold: 0.02, ``` ### `excludeOlder`