Skip to content

Commit

Permalink
Fix GetChannelFollowers() returning all followers with id = 0
Browse files Browse the repository at this point in the history
  • Loading branch information
occluder committed Aug 12, 2024
1 parent df3e25a commit 86e93a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MiniTwitch.Helix/Responses/ChannelFollowers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class ChannelFollowers : PaginableResponse<ChannelFollowers.Follower>
public int Total { get; init; }

public record Follower(
long FollowerId,
[property: JsonPropertyName("user_id")] long FollowerId,
[property: JsonPropertyName("user_login")] string FollowerName,
[property: JsonPropertyName("user_name")] string FollowerDisplayName,
DateTime FollowedAt
Expand Down

0 comments on commit 86e93a8

Please sign in to comment.