Start laying the ground work to transition from background file scan => saved liberated-status state

This commit is contained in:
Robert McRackan 2021-07-27 14:55:44 -04:00
parent 10ff95161b
commit 5c6bf300c6
10 changed files with 487 additions and 19 deletions

View file

@ -21,8 +21,8 @@ namespace ApplicationServices
e.UpdateTags(book.AudibleProductId, book.UserDefinedItem.Tags)
);
public static void UpdateIsLiberated(Book book) => performSearchEngineAction_safe(e =>
e.UpdateIsLiberated(book.AudibleProductId)
public static void UpdateLiberatedStatus(Book book) => performSearchEngineAction_safe(e =>
e.UpdateLiberatedStatus(book)
);
private static void performSearchEngineAction_safe(Action<SearchEngine> action)