You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-`instanceIds` - Target instances (omit to apply to any matching instance)
615
+
-`indexerName` (optional) - Indexer display name (e.g., "TorrentDB"). Only used when "Use indexer name as category" mode is enabled; ignored otherwise
614
616
-`tags` (optional) - Override webhook tags from settings
615
-
-`category` (optional) - Override category (defaults to matched torrent's category)
617
+
-`category` (optional) - Override category. Takes precedence over `indexerName`
616
618
617
619
Cross-seeded torrents are added paused with `skip_checking=true`. qui polls the torrent state and auto-resumes if progress meets the size tolerance threshold. If progress is too low, it remains paused for manual review.
Copy file name to clipboardExpand all lines: docs/CROSS_SEEDING.md
+36Lines changed: 36 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -207,6 +207,15 @@ The `.cross` category is created automatically with the same save path as the ba
207
207
208
208
Uses the indexer name (from the search source) as the category. Useful for organizing cross-seeds by tracker.
209
209
210
+
**Note for webhook applies:** When using the `/api/cross-seed/apply` endpoint (autobrr webhook), the indexer name cannot be derived from the torrent file. To use this mode with webhook applies, include the `indexerName` field in your payload (ignored if this mode is not enabled):
Copy file name to clipboardExpand all lines: internal/web/swagger/openapi.yaml
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -3032,6 +3032,9 @@ paths:
3032
3032
type: boolean
3033
3033
findIndividualEpisodes:
3034
3034
type: boolean
3035
+
indexerName:
3036
+
type: string
3037
+
description: Indexer display name (e.g., "TorrentDB"). Only used when "Use indexer name as category" mode is enabled; ignored otherwise. Webhook applies cannot derive the indexer from the torrent file, so this field is required for that mode.
0 commit comments