mirror of
https://github.com/Jackett/Jackett
synced 2025-02-27 00:22:54 +00:00
torrentwal: size can be empty. resolves #6555
also add bluray movie cat.
This commit is contained in:
parent
a5d055cf33
commit
b51527d340
1 changed files with 6 additions and 1 deletions
|
@ -13,6 +13,7 @@
|
|||
caps:
|
||||
categorymappings:
|
||||
- {id: "torrent_movie", cat: Movies, desc: "토렌트영화 (Movies)"}
|
||||
- {id: "torrent_bluray", cat: Movies/BluRay, desc: "토렌트영화 (Movies)"}
|
||||
- {id: "torrent_variety", cat: TV, desc: "TV예능 (TV Variety Shows)"}
|
||||
- {id: "torrent_tv", cat: TV, desc: "TV드라마 (TV Dramas)"}
|
||||
- {id: "torrent_docu", cat: TV/Documentary, desc: "다큐/시사 (Documentaries)"}
|
||||
|
@ -71,7 +72,11 @@
|
|||
- name: dateparse
|
||||
args: "01-02"
|
||||
size:
|
||||
selector: td:nth-child(4)
|
||||
selector: td:nth-child(4):contains(".M")
|
||||
text: "0 "
|
||||
size:
|
||||
selector: td:nth-child(4):not(:contains(".M"))
|
||||
optional: true
|
||||
filters:
|
||||
- name: append
|
||||
args: "B"
|
||||
|
|
Loading…
Reference in a new issue