Browse Source

forgot to split name - working/fixed now.

pull/7189/head
SWG 8 years ago
parent
commit
53913723c0
  1. 2
      couchpotato/core/media/_base/providers/torrent/yts.py

2
couchpotato/core/media/_base/providers/torrent/yts.py

@ -33,7 +33,7 @@ class Base(TorrentMagnetProvider):
result = data['data']['movies'][i]
name = result['title']
t = movie['info']['original_title']
t = movie['info']['original_title'].split(' ')
if all(word in name for word in t):

Loading…
Cancel
Save