mirror of
https://github.com/Jackett/Jackett
synced 2025-02-25 15:42:48 +00:00
hdarea: fix imdb lookup. resolves #7368
This commit is contained in:
parent
972d4c9485
commit
565a368689
1 changed files with 5 additions and 5 deletions
|
@ -30,9 +30,9 @@
|
||||||
- {id: 408, cat: Audio, desc: "HQ Audio"}
|
- {id: 408, cat: Audio, desc: "HQ Audio"}
|
||||||
|
|
||||||
modes:
|
modes:
|
||||||
search: [q]
|
search: [q, imdbid]
|
||||||
tv-search: [q, season, ep]
|
tv-search: [q, season, ep, imdbid]
|
||||||
movie-search: [q]
|
movie-search: [q, imdbid]
|
||||||
|
|
||||||
settings:
|
settings:
|
||||||
- name: username
|
- name: username
|
||||||
|
@ -84,7 +84,7 @@
|
||||||
method: post
|
method: post
|
||||||
inputs:
|
inputs:
|
||||||
$raw: "{{ range .Categories }}cat{{.}}=1&{{end}}"
|
$raw: "{{ range .Categories }}cat{{.}}=1&{{end}}"
|
||||||
search: "{{ if .Query.IMDBID }}{{ .Query.IMDBIDShort }}{{else}}{{ .Keywords }}{{end}}"
|
search: "{{ if .Query.IMDBID }}{{ .Query.IMDBID }}{{else}}{{ .Keywords }}{{end}}"
|
||||||
# 0 incldead 1 active 2 onlydead
|
# 0 incldead 1 active 2 onlydead
|
||||||
incldead: 1
|
incldead: 1
|
||||||
# 0 all 1 normal 2 free 2 2x 4 2xFree 5 50% 6 2x50% 7 30%
|
# 0 all 1 normal 2 free 2 2x 4 2xFree 5 50% 6 2x50% 7 30%
|
||||||
|
@ -114,7 +114,7 @@
|
||||||
attribute: title
|
attribute: title
|
||||||
details:
|
details:
|
||||||
selector: a[href^="details.php?id="]
|
selector: a[href^="details.php?id="]
|
||||||
attribute: href
|
attribute: href
|
||||||
download:
|
download:
|
||||||
selector: a[href^="download.php?id="]
|
selector: a[href^="download.php?id="]
|
||||||
attribute: href
|
attribute: href
|
||||||
|
|
Loading…
Reference in a new issue