From bbca498c92b0f520f5c83b5f50029405c98823c1 Mon Sep 17 00:00:00 2001 From: Josef Nemec Date: Fri, 15 Feb 2019 09:04:56 +0100 Subject: [PATCH] Small Twitch tweak to data model --- source/Plugins/TwitchLibrary/Models/TwitchOauthResponse.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Plugins/TwitchLibrary/Models/TwitchOauthResponse.cs b/source/Plugins/TwitchLibrary/Models/TwitchOauthResponse.cs index 837d3a8e6..194db1763 100644 --- a/source/Plugins/TwitchLibrary/Models/TwitchOauthResponse.cs +++ b/source/Plugins/TwitchLibrary/Models/TwitchOauthResponse.cs @@ -21,12 +21,12 @@ public class TwitchOauthSession public long RenewAfter; public bool IsTemporaryAccount; public bool IsMerged; - public int Bans; + public long Bans; } public class TwitchOauthResponse { - public int Status; + public long Status; public TwitchOauthSession Session; public long Timestamp; public object MergeToken;