[books] Start cleaning up get_from_google method

This commit is contained in:
2025-07-09 13:44:52 -04:00
parent b1b67528bf
commit 7c6e895ae4
2 changed files with 38 additions and 44 deletions

View File

@ -261,7 +261,7 @@ def manual_scrobble_video_game(
def manual_scrobble_book(
title: str, user_id: int, action: Optional[str] = None
):
book = Book.get_from_google(title)
book = Book.find_or_create(title)
scrobble_dict = {
"user_id": user_id,