twitch: Do not add initial result search twice
This commit is contained in:
parent
be894106a3
commit
ca2b4f4d59
1 changed files with 0 additions and 1 deletions
|
@ -150,7 +150,6 @@ class TwitchClient:
|
|||
|
||||
result = {'_total': 0, 'streams': []}
|
||||
data = self.do_q_auth_v6(init_q_template.format(base, lang, 100, game_id), header)
|
||||
result['streams'].extend(data['data'])
|
||||
while len(data.get('data', [])) > 0: # there must be non zero value, but search is kinda broken now
|
||||
result['streams'].extend(data['data'])
|
||||
data = self.do_q_auth_v6(q_template.format(base, lang, 100, data['pagination']['cursor'], game_id), header)
|
||||
|
|
Loading…
Reference in a new issue