Fixed improper async usage.
This commit is contained in:
parent
f148650e57
commit
87c3cac013
@ -6,10 +6,7 @@ namespace FileLiberator.AaxcDownloadDecrypt
|
||||
{
|
||||
public class DownloadBookDummy : DownloadableBase
|
||||
{
|
||||
public override async Task<StatusHandler> ProcessItemAsync(LibraryBook libraryBook)
|
||||
{
|
||||
return new StatusHandler();
|
||||
}
|
||||
public override Task<StatusHandler> ProcessItemAsync(LibraryBook libraryBook) => Task.FromResult(new StatusHandler());
|
||||
|
||||
public override bool Validate(LibraryBook libraryBook)
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user