From cbd46df4bcd12d54e3cb3282ec8350efa623463b Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Tue, 14 Oct 2025 10:58:03 -0400 Subject: [PATCH] [scrobbles] Add Food and Geolocation to long play & manual comics --- vrobbler/apps/scrobbles/constants.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vrobbler/apps/scrobbles/constants.py b/vrobbler/apps/scrobbles/constants.py index d176879..f86435e 100644 --- a/vrobbler/apps/scrobbles/constants.py +++ b/vrobbler/apps/scrobbles/constants.py @@ -18,6 +18,8 @@ PLAY_AGAIN_MEDIA = { "bricksets": "BrickSet", "trails": "Trail", "beers": "Beer", + "foods": "Food", + "locations": "GeoLocation", } MEDIA_END_PADDING_SECONDS = { @@ -35,6 +37,7 @@ SCROBBLE_CONTENT_URLS = { "-t": ["https://app.todoist.com/app/task/{id}"], "-p": ["https://www.ipdb.plus/IPDb/puzzle.php?id="], "-l": ["https://brickset.com/sets/"], + "-c": ["https://readcomicsonline.ru"], } EXCLUDE_FROM_NOW_PLAYING = ("GeoLocation",) @@ -50,6 +53,7 @@ MANUAL_SCROBBLE_FNS = { "-t": "manual_scrobble_task", "-p": "manual_scrobble_puzzle", "-l": "manual_scrobble_brickset", + "-c": "manual_scrobble_book", }