File tree Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Expand file tree Collapse file tree 2 files changed +12
-4
lines changed Original file line number Diff line number Diff line change @@ -753,9 +753,9 @@ skipRecheck: false,
753
753
::: tip
754
754
755
755
It's recommended to use ` includeSingleEpisodes: false ` in your config and override it for webhook
756
- commands triggered on [ download completion] ( ../tutorials/triggering-searches.md#setting-up-your-torrent-client ) .
756
+ commands triggered on [ ` download completion ` ] ( ../tutorials/triggering-searches.md#setting-up-your-torrent-client ) .
757
757
Combined with matching single episodes from announce, this should match all episodes without
758
- the downside of searching for [ trumped/dead torrents] ( ../v6-migration.md#updated-includesingleepisodes-behavior ) .
758
+ the downside of searching for [ ` trumped/dead torrents ` ] ( ../v6-migration.md#updated-includesingleepisodes-behavior ) .
759
759
760
760
:::
761
761
Original file line number Diff line number Diff line change @@ -78,8 +78,8 @@ was just processed by cross-seed.
78
78
79
79
::: tip
80
80
81
- Use the webhook command with ` -d "includeSingleEpisodes=true" ` with ` includeSingleEpisodes: false `
82
- in your config to minimize useless searches.
81
+ Use the webhook command with ` -d "includeSingleEpisodes=true" ` while keeping
82
+ ` includeSingleEpisodes: false ` in your config to minimize useless searches.
83
83
84
84
[ ** Read more** ] ( ../v6-migration.md#updated-includesingleepisodes-behavior )
85
85
@@ -94,7 +94,9 @@ in your config to minimize useless searches.
94
94
#! /bin/sh
95
95
curl -XPOST < BASE_URL> /api/webhook? apikey=< API_KEY> -d " infoHash=$2 " -d " includeSingleEpisodes=true"
96
96
```
97
+
97
98
OR
99
+
98
100
` ` ` shell
99
101
#! /bin/sh
100
102
curl -XPOST < BASE_URL> /api/webhook? apikey=< API_KEY> -d " infoHash=$2 "
@@ -121,7 +123,9 @@ in your config to minimize useless searches.
121
123
` ` ` shell
122
124
curl -XPOST < BASE_URL> /api/webhook? apikey=< API_KEY> -d " infoHash=%I" -d " includeSingleEpisodes=true"
123
125
` ` `
126
+
124
127
OR
128
+
125
129
` ` ` shell
126
130
curl -XPOST < BASE_URL> /api/webhook? apikey=< API_KEY> -d " infoHash=%I"
127
131
` ` `
@@ -137,7 +141,9 @@ in your config to minimize useless searches.
137
141
#! /bin/sh
138
142
curl -XPOST < BASE_URL> /api/webhook? apikey=< API_KEY> -d " infoHash=$TR_TORRENT_HASH " -d " includeSingleEpisodes=true"
139
143
` ` `
144
+
140
145
OR
146
+
141
147
` ` ` shell
142
148
#! /bin/sh
143
149
curl -XPOST < BASE_URL> /api/webhook? apikey=< API_KEY> -d " infoHash=$TR_TORRENT_HASH "
@@ -163,7 +169,9 @@ in your config to minimize useless searches.
163
169
path=$3
164
170
curl -XPOST < BASE_URL> /api/webhook? apikey=< API_KEY> -d " infoHash=$infoHash " -d " includeSingleEpisodes=true"
165
171
` ` `
172
+
166
173
OR
174
+
167
175
` ` ` shell
168
176
#! /bin/bash
169
177
infoHash=$1
You can’t perform that action at this time.
0 commit comments