feat: add date-format fallback for date-named TV releases (fixes #28)#30
Closed
wilb wants to merge 1 commit into
Closed
feat: add date-format fallback for date-named TV releases (fixes #28)#30wilb wants to merge 1 commit into
wilb wants to merge 1 commit into
Conversation
…rt33#28) Shows like AEW Dynamite are filed on Usenet as 'AEW.Dynamite.2026.05.13' rather than SxxExx. All prior fallbacks (primary, alias, absolute-episode) returned zero results because they only tried season/episode numbering. This adds a new dateFallback step (enabled by default, opt-out via SearchConfig.dateFallback = false) that fires when: - type is 'series' and results are still zero - TVDB provides an episodeAired date (YYYY-MM-DD) - show is not anime It calls the existing searchTVShow() date-scheme path with the canonical title (plus additional titles in parallel-alt mode), building a query like 'AEW Dynamite 2026.05.13'. UTS only. Closes DSmart33#28
Author
|
Replaced by #31 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Shows like AEW Dynamite are filed on Usenet as 'AEW.Dynamite.2026.05.13' rather than SxxExx. All prior fallbacks (primary, alias, absolute-episode) returned zero results because they only tried season/episode numbering.
This adds a new dateFallback step (enabled by default, opt-out via SearchConfig.dateFallback = false) that fires when:
It calls the existing searchTVShow() date-scheme path with the canonical title (plus additional titles in parallel-alt mode), building a query like 'AEW Dynamite 2026.05.13'. UTS only.
Closes #28