Changed method signature.

This commit is contained in:
Michael Bucari-Tovo 2021-08-21 18:17:07 -06:00
parent f25734334d
commit 263222d8cc
3 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@ namespace FileLiberator
var result = verifyDownload(libraryBook);
var liberatedStatus = result.IsSuccess ? LiberatedStatus.Liberated : LiberatedStatus.NotLiberated;
ApplicationServices.LibraryCommands.UpdatePdf(libraryBook, liberatedStatus);
ApplicationServices.LibraryCommands.UpdatePdf(libraryBook.Book, liberatedStatus);
return result;
}