From 041435bc93742c18790f793a0d76c0843e47656c Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Sun, 9 Feb 2025 21:58:03 -0500 Subject: [PATCH] [books] Use google and title to get book --- vrobbler/apps/scrobbles/scrobblers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vrobbler/apps/scrobbles/scrobblers.py b/vrobbler/apps/scrobbles/scrobblers.py index d6aac09..35fd49a 100644 --- a/vrobbler/apps/scrobbles/scrobblers.py +++ b/vrobbler/apps/scrobbles/scrobblers.py @@ -236,9 +236,9 @@ def manual_scrobble_video_game( def manual_scrobble_book( - openlibrary_id: str, user_id: int, action: Optional[str] = None + title: str, user_id: int, action: Optional[str] = None ): - book = Book.find_or_create(openlibrary_id) + book = Book.get_from_google(title) scrobble_dict = { "user_id": user_id,