mirror of
https://github.com/moparisthebest/SickRage
synced 2025-01-07 11:58:01 -05:00
Merge pull request #95 from adam111316/feature/FixNewznabUnicode
Fixes unicode issues during searches on newznab providers when rid mapping occurs.
This commit is contained in:
commit
7f379b1356
@ -41,6 +41,7 @@
|
|||||||
* Fix Coming Episodes/Layout Calender/View Paused and tweak its UI text
|
* Fix Coming Episodes/Layout Calender/View Paused and tweak its UI text
|
||||||
* Made all init scripts executable
|
* Made all init scripts executable
|
||||||
* Fix invalid responses when using sickbeard.searchtvdb api command
|
* Fix invalid responses when using sickbeard.searchtvdb api command
|
||||||
|
* Fixes unicode issues during searches on newznab providers when rid mapping occur
|
||||||
|
|
||||||
[develop changelog]
|
[develop changelog]
|
||||||
* Change improve display of progress bars in the Downloads columns of the show list page
|
* Change improve display of progress bars in the Downloads columns of the show list page
|
||||||
|
@ -664,7 +664,7 @@ class TVRage:
|
|||||||
self._getShowData(key, True)
|
self._getShowData(key, True)
|
||||||
return self.shows[key]
|
return self.shows[key]
|
||||||
|
|
||||||
key = str(key).lower()
|
key = key.lower()
|
||||||
self.config['searchterm'] = key
|
self.config['searchterm'] = key
|
||||||
selected_series = self._getSeries(key)
|
selected_series = self._getSeries(key)
|
||||||
if isinstance(selected_series, dict):
|
if isinstance(selected_series, dict):
|
||||||
|
Loading…
Reference in New Issue
Block a user