diff --git a/Manager.YouTube/NetworkService.cs b/Manager.YouTube/NetworkService.cs index 144152e..748f552 100644 --- a/Manager.YouTube/NetworkService.cs +++ b/Manager.YouTube/NetworkService.cs @@ -162,7 +162,7 @@ public static class NetworkService } } - public static async Task GetChannelAsync(string channelId, YouTubeClient client) + public static async Task> GetChannelAsync(string channelId, YouTubeClient client) { if (client.External.State == null) { @@ -206,6 +206,6 @@ public static class NetworkService var jsonContent = await response.Content.ReadAsStringAsync(); - return Result.Fail(ResultError.Fail("Not implemented!")); + return ResultError.Fail("Not implemented!"); } } \ No newline at end of file