We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a10daa commit 78e57e5Copy full SHA for 78e57e5
RedditSharp/Things/AuthenticatedUser.cs
@@ -25,7 +25,7 @@ await JsonConvert.PopulateObjectAsync(json["name"] == null ? json["data"].ToStri
25
}
26
public new AuthenticatedUser Init(Reddit reddit, JToken json, IWebAgent webAgent)
27
{
28
- CommonInit(reddit, json, webAgent).RunSynchronously();
+ CommonInit(reddit, json, webAgent).Wait();
29
JsonConvert.PopulateObject(json["name"] == null ? json["data"].ToString() : json.ToString(), this,
30
reddit.JsonSerializerSettings);
31
return this;
0 commit comments