Skip to content

Commit 1af566f

Browse files
committed
allow_source
1 parent 7a8cb19 commit 1af566f

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

resources/lib/twitch/api/usher.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def live(channel):
4040
q.add_urlkw(keys.CHANNEL, channel)
4141
q.add_param(keys.SIG, token[keys.SIG])
4242
q.add_param(keys.TOKEN, token[keys.TOKEN])
43-
q.add_param(keys.ALLOW_SOURCE, Boolean.FALSE)
43+
q.add_param(keys.ALLOW_SOURCE, Boolean.TRUE)
4444
return q
4545

4646

@@ -55,6 +55,7 @@ def _vod(id):
5555
q.add_urlkw(keys.ID, id)
5656
q.add_param(keys.NAUTHSIG, token[keys.SIG])
5757
q.add_param(keys.NAUTH, token[keys.TOKEN])
58+
q.add_param(keys.ALLOW_SOURCE, Boolean.TRUE)
5859
return q
5960

6061

0 commit comments

Comments
 (0)