Skip to content

Commit 526dc11

Browse files
authored
Merge pull request #135 from anxdpanic/nexus
3.0.1
2 parents 33aa5e2 + 789f610 commit 526dc11

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

Diff for: addon.xml

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<addon id="script.module.python.twitch" name="python-twitch for Kodi" version="3.0.0" provider-name="anxdpanic, A Talented Community">
2+
<addon id="script.module.python.twitch" name="python-twitch for Kodi" version="3.0.1" provider-name="anxdpanic, A Talented Community">
33
<requires>
44
<import addon="xbmc.python" version="3.0.1"/>
55
<import addon="script.module.six" version="1.11.0"/>
@@ -9,9 +9,7 @@
99
<extension point="xbmc.addon.metadata">
1010
<platform>all</platform>
1111
<news>
12-
[rem] removed support for Kodi versions pre-Nexus v20
13-
[rem] removed python 2 support
14-
[rem] removed dependency on six
12+
[fix] oauth queries
1513
[lang] updated translations from Weblate
1614
</news>
1715
<assets>

Diff for: resources/lib/twitch/queries.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ def __init__(self, path, headers={}, data={}, method=methods.GET):
192192
class OAuthQuery(JsonQuery):
193193
def __init__(self, path, headers={}, data={}, method=methods.GET):
194194
_headers = deepcopy(headers)
195-
super(JsonQuery, self).__init__(_oauth_baseurl, _headers, data, method)
195+
super(JsonQuery, self).__init__(_oauthid_baseurl, _headers, data, method)
196196
self.add_path(path)
197197

198198

0 commit comments

Comments
 (0)