mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-03-02 22:57:22 -05:00
Season Searches for DrunkenSlug Include Unsupported season Query Parameter, Resulting in No Season Pack Results #1251
Labels
No labels
Area: API
Area: Database
Area: Db-migration
Area: Download Clients
Area: Indexer
Area: Metadata API
Area: Notifications
Area: Tooling
Area: UI
Area: Update API
Priority: High
Priority: Low
Priority: Medium
Status: Cannot Reproduce
Status: Confirmed
Status: Help Wanted
Status: In Progress
Status: Indexer - need invite
Status: Info Needed
Status: Investigating
Status: Logs Needed
Status: Maybe One Day
Status: Needs Triage
Status: Unlikely
Status: Waiting for OP
Status: Won't Fix
Type: Bug
Type: Bug
Type: Documentation
Type: Duplicate
Type: Enhancement
Type: External Bug
Type: Feature Request
Type: Regression
Type: Support
Type: Support.
lidarr-pull
radarr-pull
sonarr upstream
sonarr-pull
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/Prowlarr#1251
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @ahamill85 on GitHub (Nov 18, 2025).
I attest that there is not an existing issue for this?
I attest this is not related to a Cardigann YML Indexer.
Current Behavior
When Sonarr performs a season search through Prowlarr, Prowlarr forwards a
season=query parameter to the DrunkenSlug indexer. DrunkenSlug’s Newznab API does not support theseasonparameter fortvsearch, which results in no season pack results being returned.If the query is instead sent as plain text (e.g.,
q=Show+Name+S02), DrunkenSlug returns season packs correctly.I reached out to DrunkenSlug about this behavior, but they were unable or unwilling to provide help or clarification regarding API parameter support.
Expected Behavior
Prowlarr should recognize that DrunkenSlug does not support
seasonSearchand omit theseasonparameter.A plain query-based search such as:
Steps To Reproduce
season=Xand that no season packs are returned.Environment
What branch are you running?
Master
Trace Logs?
prowlarr.trace.txt
I attest that Trace Logs have been provided as applicable. Reports will be closed if the required logs are not provided.
trace- that are relevant and show this issue.@mynameisbogdan commented on GitHub (Nov 18, 2025):
The newznab implementation is generic and hard-coding conditions per indexer are avoided.
You're correct in your assumption on
season=1not returning everything, but not to the actual issue which is that the indexer failed to map the season for all results.Sadly this needs to be fixed on DS, as while it's fixing your use-case it might break other kind of search (for example anime season seaching which sometimes uses batches).
@ahamill85 commented on GitHub (Nov 18, 2025):
Is there any possibility to add a toggle to the generic newznab config to omit the season parameter?
@mynameisbogdan commented on GitHub (Nov 18, 2025):
No, unaltered
$INDEXER/api?t=capsare used as source of truth for the capabilities.