[CHANGE] Reworked db with interceptors
This commit is contained in:
parent
b1e5b0dc68
commit
0f83cf1ddc
23 changed files with 293 additions and 79 deletions
|
|
@ -31,4 +31,9 @@ public static class NetworkService
|
|||
return ResultError.Error(e);
|
||||
}
|
||||
}
|
||||
|
||||
public static async Task<Result<byte[]>> DownloadBytesAsync(HttpRequestMessage request, YouTubeClient client)
|
||||
{
|
||||
return ResultError.Fail("Not implemented");
|
||||
}
|
||||
}
|
||||
|
|
@ -204,7 +204,7 @@ public sealed class YouTubeClient : IDisposable
|
|||
|
||||
public void Dispose()
|
||||
{
|
||||
HttpClient?.Dispose();
|
||||
HttpClient.Dispose();
|
||||
}
|
||||
|
||||
private async Task<Result<string>> GetCurrentAccountIdAsync()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue