Fix followers download. Remove condition for and last_cursor != "" - Close #368
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
__version__ = "2.0.6"
|
||||
__version__ = "2.0.7"
|
||||
from .TwitchChannelPointsMiner import TwitchChannelPointsMiner
|
||||
|
||||
__all__ = [
|
||||
|
||||
@@ -168,7 +168,7 @@ class Twitch(object):
|
||||
has_next = True
|
||||
last_cursor = ""
|
||||
follows = []
|
||||
while has_next is True and last_cursor != "":
|
||||
while has_next is True:
|
||||
json_data["variables"]["cursor"] = last_cursor
|
||||
json_response = self.post_gql_request(json_data)
|
||||
try:
|
||||
|
||||
Reference in New Issue
Block a user