mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-02 17:33:37 +00:00
Fix typo.
This commit is contained in:
parent
6f6e76400d
commit
8a763e15cc
2 changed files with 8 additions and 3 deletions
|
@ -1,4 +1,9 @@
|
|||
### 0.17.3 (2018-09-01 02:10:00 UTC)
|
||||
### 0.17.4 (2018-09-01 03:00:00 UTC)
|
||||
|
||||
* Fix typo
|
||||
|
||||
|
||||
### 0.17.3 (2018-09-01 02:10:00 UTC)
|
||||
|
||||
* Fix issue with tvdb response data
|
||||
|
||||
|
|
|
@ -814,7 +814,7 @@ class TvdbV1:
|
|||
if k in ['banner', 'fanart', 'poster']:
|
||||
v = self._get_url_artwork(v)
|
||||
else:
|
||||
v = self.clean_data(v)
|
||||
v = clean_data(v)
|
||||
|
||||
self._set_show_data(sid, k.lower(), v)
|
||||
|
||||
|
@ -869,7 +869,7 @@ class TvdbV1:
|
|||
if 'filename' == k:
|
||||
v = self._get_url_artwork(v)
|
||||
else:
|
||||
v = self.clean_data(v)
|
||||
v = clean_data(v)
|
||||
|
||||
self._set_item(sid, seas_no, ep_no, k, v)
|
||||
|
||||
|
|
Loading…
Reference in a new issue