[beers] Fix untappd and beeradvocate urls

This commit is contained in:
2024-10-23 10:54:35 -04:00
parent 9fe474978a
commit f555a49746

View File

@ -30,8 +30,7 @@ SCROBBLE_CONTENT_URLS = {
"-i": "https://www.imdb.com/title/", "-i": "https://www.imdb.com/title/",
"-s": "https://www.thesportsdb.com/event/", "-s": "https://www.thesportsdb.com/event/",
"-g": "https://boardgamegeek.com/boardgame/", "-g": "https://boardgamegeek.com/boardgame/",
"-ba": "https://beeradvocate.com/beer/profile/{producer_id}/{id}/", "-u": "https://untappd.com/",
"-u": "https://untappd.com/beer/{id}",
"-b": "https://www.amazon.com/", "-b": "https://www.amazon.com/",
"-t": "https://app.todoist.com/app/task/{id}", "-t": "https://app.todoist.com/app/task/{id}",
} }
@ -44,7 +43,7 @@ MANUAL_SCROBBLE_FNS = {
"-s": "manual_scrobble_event", "-s": "manual_scrobble_event",
"-i": "manual_scrobble_video", "-i": "manual_scrobble_video",
"-g": "manual_scrobble_board_game", "-g": "manual_scrobble_board_game",
"-d": "manual_scrobble_beer", "-u": "manual_scrobble_beer",
"-w": "manual_scrobble_webpage", "-w": "manual_scrobble_webpage",
"-t": "manual_scrobble_task", "-t": "manual_scrobble_task",
} }