[scrobblers] Allow stopping reading comics

This commit is contained in:
2025-10-20 15:46:10 -04:00
parent b5bfad73ef
commit d77caa2783

View File

@ -295,7 +295,13 @@ def manual_scrobble_book(
},
)
return Scrobble.create_or_update(book, user_id, scrobble_dict, read_log_page=page)
scrobble = Scrobble.create_or_update(book, user_id, scrobble_dict, read_log_page=page)
if action == "stop":
scrobble.stop(force_finish=True)
return scrobble
def manual_scrobble_board_game(