diff --git a/TwitchChannelPointsMiner/classes/Twitch.py b/TwitchChannelPointsMiner/classes/Twitch.py index 13cbad4f..9723d33f 100644 --- a/TwitchChannelPointsMiner/classes/Twitch.py +++ b/TwitchChannelPointsMiner/classes/Twitch.py @@ -374,7 +374,7 @@ def get_followers(self, first=100): json_response = self.__do_helix_request(query) pagination = json_response["pagination"] - followers += [fw["to_name"].lower() for fw in json_response["data"]] + followers += [fw["to_login"].lower() for fw in json_response["data"]] time.sleep(random.uniform(0.3, 0.7)) if pagination == {}: