Merge branch 'master' into develop

This commit is contained in:
JackDandy 2018-09-01 03:34:48 +01:00
commit 145a60cfa7
2 changed files with 7 additions and 2 deletions

View file

@ -4,6 +4,11 @@
[develop changelog]
### 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

View file

@ -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)