Archived
1
0

Core update. Base core features are done (main app doesn't compile)

Related Work Items: #416, #422, #423, #424
This commit is contained in:
Michael Gordeev
2020-06-11 21:17:18 +03:00
parent b3212738e8
commit c58d846057
18 changed files with 386 additions and 281 deletions
+3 -2
View File
@@ -1,4 +1,5 @@
using FoxTube.Utils;
using FoxTube.Services;
using FoxTube.Utils;
using Google.Apis.YouTube.v3.Data;
using SQLitePCL;
using System;
@@ -131,7 +132,7 @@ namespace FoxTube
public static async Task<Channel> GetChannel(string channelId, string part)
{
var request = UserManagement.Service.Channels.List(part);
var request = UserService.Service.Channels.List(part);
request.Id = channelId;
request.MaxResults = 1;