fix: simplify tags
This commit is contained in:
parent
c016c1cec3
commit
89189da06c
1 changed files with 3 additions and 3 deletions
|
@ -55,9 +55,9 @@ export default {
|
||||||
},
|
},
|
||||||
tagLookup: (url, tagMap) => {
|
tagLookup: (url, tagMap) => {
|
||||||
if (!url) return
|
if (!url) return
|
||||||
if (url.includes('#artists')) return `#Music`
|
if (url.includes('#artists')) return '#Music'
|
||||||
if (url.includes('openlibrary.org')) return `#Books #NowReading ${tagMap[url]}`.trim()
|
if (url.includes('openlibrary.org')) return '#Books #NowReading'
|
||||||
if (url.includes('themoviedb.org/movie')) return `#Movies #Watching`
|
if (url.includes('themoviedb.org/movie')) return '#Movies #Watching'
|
||||||
return tagMap[url] || ''
|
return tagMap[url] || ''
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Reference in a new issue