Search on torrenting.com doesn't use season and episode number #841

Closed
opened 2026-02-20 10:04:11 -05:00 by deekerman · 4 comments
Owner

Originally created by @koudman on GitHub (Apr 12, 2023).

Is there an existing issue for this?

  • I have searched the existing open and closed issues

Current Behavior

While searching for past episodes on torrenting.com prowlarr it show IMDBId, Season and Episode in the parameters but the generated URL (e.g. https://torrenting.com/t?4=&5=&18=&29=&55=&82=&99=&q=tt******&qf=adv) it uses for the search only includes the IMBDId.

This leads to issues as the Query only returns 35 results and for older episodes this means the search comes up empty (they are beyond the 35 results limit = first page)

Expected Behavior

In stead of only sending the IMDBId send the season and epsiode number as well (format: SxxExx) in the search URL to ensure that relevant hits show up within the first 35 results.

like: https://torrenting.com/t?4=&5=&18=&29=&55=&82=&99=&q=tt******+SXXEXX

Steps To Reproduce

  1. Search for past episode of any series on torrenting.com
  2. When episode doesn't show up in results verify that episode is available by running a manual search for it

Environment

- OS: Windows 10
- Prowlarr: 1.3.2.3006
- Browser: Chrome

What branch are you running?

Master

Trace Logs?

2023-04-12 21:00:57.4|Info|ReleaseSearchService|Searching indexer(s): [Torrenting] for Term: [] | ID(s): IMDbId:[0115147] for Season / Episode:[2023.03.08], Offset: 0, Limit: 100, Categories: [5000, 5030, 5040, 5020]
2023-04-12 21:00:57.4|Info|Cardigann|Adding request: https://torrenting.com/t?4=&5=&18=&29=&55=&82=&99=&q=tt0115147&qf=adv

Trace Logs have been provided as applicable. Reports may be closed if the required logs are not provided.

  • I have followed the steps in the wiki link above and provided the required trace logs that are relevant and show this issue.
Originally created by @koudman on GitHub (Apr 12, 2023). ### Is there an existing issue for this? - [X] I have searched the existing open and closed issues ### Current Behavior While searching for past episodes on torrenting.com prowlarr it show IMDBId, Season and Episode in the parameters but the generated URL (e.g. https://torrenting.com/t?4=&5=&18=&29=&55=&82=&99=&q=tt******&qf=adv) it uses for the search only includes the IMBDId. This leads to issues as the Query only returns 35 results and for older episodes this means the search comes up empty (they are beyond the 35 results limit = first page) ### Expected Behavior In stead of only sending the IMDBId send the season and epsiode number as well (format: SxxExx) in the search URL to ensure that relevant hits show up within the first 35 results. like: https://torrenting.com/t?4=&5=&18=&29=&55=&82=&99=&q=tt******+SXXEXX ### Steps To Reproduce 1. Search for past episode of any series on torrenting.com 2. When episode doesn't show up in results verify that episode is available by running a manual search for it ### Environment ```markdown - OS: Windows 10 - Prowlarr: 1.3.2.3006 - Browser: Chrome ``` ### What branch are you running? Master ### Trace Logs? 2023-04-12 21:00:57.4|Info|ReleaseSearchService|Searching indexer(s): [Torrenting] for Term: [] | ID(s): IMDbId:[0115147] for Season / Episode:[2023.03.08], Offset: 0, Limit: 100, Categories: [5000, 5030, 5040, 5020] 2023-04-12 21:00:57.4|Info|Cardigann|Adding request: https://torrenting.com/t?4=&5=&18=&29=&55=&82=&99=&q=tt0115147&qf=adv ### Trace Logs have been provided as applicable. Reports may be closed if the required logs are not provided. - [X] I have followed the steps in the wiki link above and provided the required trace logs that are relevant and show this issue.
Author
Owner

@mynameisbogdan commented on GitHub (Apr 12, 2023):

How about these cases:

  • q=tt******+SxxExx: shows only one specific episode?
  • q=tt******+Sxx: shows one specific season and/or all episodes for that season?
  • q=tt******+Exx: shows one specific episode for all seasons?
  • q=tt******+xxxx.xx.xx: daily shows like 2023.01.03 are shown?
@mynameisbogdan commented on GitHub (Apr 12, 2023): How about these cases: - `q=tt******+SxxExx`: shows only one specific episode? - `q=tt******+Sxx`: shows one specific season and/or all episodes for that season? - `q=tt******+Exx`: shows one specific episode for all seasons? - `q=tt******+xxxx.xx.xx`: daily shows like `2023.01.03` are shown?
Author
Owner

@ilike2burnthing commented on GitHub (Apr 12, 2023):

q=tt******+SxxExx: shows only one specific episode?

yes

q=tt******+Sxx: shows one specific season and/or all episodes for that season?

yes

q=tt******+Exx: shows one specific episode for all seasons?

yes, but they don't support partial matches, so searching for tt******+E02 or show+name+E02 will not return Show Name S01E02 1080p but will return Show Name E02 1080p and Show Name S01E01-E02 1080p (and as far as I can see they don't support wildcards)

q=tt******+xxxx.xx.xx: daily shows like 2023.01.03 are shown?

yes (title format is 2023 01 03, but . is ignored in search)

github.com/Jackett/Jackett@007f012b44

@ilike2burnthing commented on GitHub (Apr 12, 2023): > `q=tt******+SxxExx`: shows only one specific episode? yes > `q=tt******+Sxx`: shows one specific season and/or all episodes for that season? yes > `q=tt******+Exx`: shows one specific episode for all seasons? yes, but they don't support partial matches, so searching for `tt******+E02` or `show+name+E02` will not return `Show Name S01E02 1080p` but will return `Show Name E02 1080p` and `Show Name S01E01-E02 1080p` (and as far as I can see they don't support wildcards) > `q=tt******+xxxx.xx.xx`: daily shows like `2023.01.03` are shown? yes (title format is `2023 01 03`, but `.` is ignored in search) https://github.com/Jackett/Jackett/commit/007f012b44f3072e2130fed80eb9c33baa786f2d
Author
Owner

@mynameisbogdan commented on GitHub (Apr 12, 2023):

Ah, cool then. 🙀

Thanks @ilike2burnthing.

@mynameisbogdan commented on GitHub (Apr 12, 2023): Ah, cool then. 🙀 Thanks @ilike2burnthing.
Author
Owner

@mynameisbogdan commented on GitHub (Apr 12, 2023):

github.com/Prowlarr/Indexers@b612f8b094

@mynameisbogdan commented on GitHub (Apr 12, 2023): https://github.com/Prowlarr/Indexers/commit/b612f8b0945d22dd6275153fbfd84f4475f54e14
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/Prowlarr#841
No description provided.