diff --git a/ttrss/ApiClient.cs b/ttrss/ApiClient.cs index 5ed6a50..6d03a37 100644 --- a/ttrss/ApiClient.cs +++ b/ttrss/ApiClient.cs @@ -492,10 +492,15 @@ namespace ttrss_co_client.ttrss }); return await get>(json); } - public async Task GetConfig() + public async Task GetConfig() { assertInitialized(); - throw new NotImplementedException(); + var json = JsonContent.Create(new + { + op = "getConfig", + sid = this.SessionId + }); + return await get(json); } /// ///tell the feed to update. As opposed to updating our configuration of the feed.