mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-03-02 22:57:22 -05:00
ignoreblankinputs is not supported #792
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#792
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 @scottjasso on GitHub (Feb 23, 2023).
Is there an existing issue for this?
Current Behavior
In my custom cardigann yaml, the
ignoreblankinputsfield does not have any effect.I have things like
And whether
ignoreblankinputsis true or false, that input is included in the query params, which breaks the query.Instead, I have to use a very long, convoluted "$raw" query with conditionals (
{{ if .Query.IMDBIDShort }}&imdbId={{ .Query.IMDBIDShort }}{{ else }}{{ end }}...repeat for each input).Expected Behavior
ignoreblankinputs: trueshould mean that blank inputs are not included in the query params.Steps To Reproduce
No response
Environment
What branch are you running?
Develop
Trace Logs?
Not including.
@scottjasso commented on GitHub (Feb 23, 2023):
I didn't include any logs since the issue is obvious from the code. Looks like this PR started to add support for it: https://github.com/Prowlarr/Prowlarr/pull/644/files
but it was never merged.
@bakerboy448 commented on GitHub (Feb 23, 2023):
ignoreblankinputswas never added and the wiki page erroneously indicated it did; that has been fixed.ignoreblankinputsis not supported by jackett and is not part of any valid Cardigann schema at this time.for examples of how to workaround these; see any of the UNIT3D YML definitions
@scottjasso commented on GitHub (Feb 23, 2023):
Thanks! I'm using the
$rawconditional queries for now, and that works. Thank you for updating the wiki so quickly.Definitely a quality-of-life feature request then. 👍