Skip to content
Merged

3.0.1 #135

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.module.python.twitch" name="python-twitch for Kodi" version="3.0.0" provider-name="anxdpanic, A Talented Community">
<addon id="script.module.python.twitch" name="python-twitch for Kodi" version="3.0.1" provider-name="anxdpanic, A Talented Community">
<requires>
<import addon="xbmc.python" version="3.0.1"/>
<import addon="script.module.six" version="1.11.0"/>
Expand All @@ -9,9 +9,7 @@
<extension point="xbmc.addon.metadata">
<platform>all</platform>
<news>
[rem] removed support for Kodi versions pre-Nexus v20
[rem] removed python 2 support
[rem] removed dependency on six
[fix] oauth queries
[lang] updated translations from Weblate
</news>
<assets>
Expand Down
2 changes: 1 addition & 1 deletion resources/lib/twitch/queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ def __init__(self, path, headers={}, data={}, method=methods.GET):
class OAuthQuery(JsonQuery):
def __init__(self, path, headers={}, data={}, method=methods.GET):
_headers = deepcopy(headers)
super(JsonQuery, self).__init__(_oauth_baseurl, _headers, data, method)
super(JsonQuery, self).__init__(_oauthid_baseurl, _headers, data, method)
self.add_path(path)


Expand Down