twitch: Do not add initial result search twice

This commit is contained in:
Alex Vanin 2021-07-03 11:14:24 +03:00
parent be894106a3
commit ca2b4f4d59

View file

@ -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)