forked from platypush/platypush
[torrent
] duration * 60 for results returned by PopcornTime API.
This commit is contained in:
parent
1d41df51e7
commit
a94ddd3f05
1 changed files with 1 additions and 1 deletions
|
@ -195,7 +195,7 @@ class TorrentPlugin(Plugin):
|
||||||
result.get('title', '[No Title]')
|
result.get('title', '[No Title]')
|
||||||
+ f' [movies][{lang}][{quality}]'
|
+ f' [movies][{lang}][{quality}]'
|
||||||
),
|
),
|
||||||
'duration': int(result.get('runtime') or 0),
|
'duration': int(result.get('runtime') or 0) * 60,
|
||||||
'year': int(result.get('year') or 0),
|
'year': int(result.get('year') or 0),
|
||||||
'synopsis': result.get('synopsis'),
|
'synopsis': result.get('synopsis'),
|
||||||
'trailer': result.get('trailer'),
|
'trailer': result.get('trailer'),
|
||||||
|
|
Loading…
Reference in a new issue