chore: update deps + fix tags

This commit is contained in:
Cory Dransfeldt 2024-05-25 20:23:50 -07:00
parent 4b07e0df0e
commit 557f2f9155
No known key found for this signature in database
3 changed files with 52 additions and 49 deletions

View file

@ -57,8 +57,8 @@ export default {
tagLookup: (url, tagMap) => {
if (!url) return
if (url.includes('#artists')) return '#Music'
if (url.includes('openlibrary.org')) return '#Books #NowReading'
if (url.includes('themoviedb.org/movie')) return '#Movies #Watching'
if (url.includes('https://coryd.dev/books')) return '#Books #FinishedReading'
if (url.includes('https://coryd.dev/watching')) return '#Movies #Watched'
return tagMap[url] || ''
},