diff --git a/OF DL/Helpers/APIHelper.cs b/OF DL/Helpers/APIHelper.cs index 585c627..69c5891 100644 --- a/OF DL/Helpers/APIHelper.cs +++ b/OF DL/Helpers/APIHelper.cs @@ -247,7 +247,7 @@ public async Task GetUserInfoById(string endpoint) //if the content creator doesnt exist, we get a 200 response, but the content isnt usable //so let's not throw an exception, since "content creator no longer exists" is handled elsewhere //which means we wont get loads of exceptions - if (body.Contains("[]")) + if (body.Equals("[]")) return null; JObject jObject = JObject.Parse(body);