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", }