Fixed issues with extraction (migration from SharpCompress to Squid-Box.SevenZipSharp)

This commit is contained in:
Jeddunk 2021-01-04 15:43:27 +01:00
parent af8110e475
commit 2cfb7dc654
5 changed files with 47 additions and 36 deletions

View file

@ -71,7 +71,7 @@ namespace auto_creamapi.ViewModels
var filename = await download;
/*var extract = _download.Extract(filename);
await extract;*/
var extract = Task.Run(() => _download.Extract(filename));
var extract = _download.Extract(filename);
await extract.ConfigureAwait(false);
_token.Dispose();
await _navigationService.Close(this);