fix: url checks

This commit is contained in:
Cory Dransfeldt 2023-09-17 15:48:41 -07:00
parent 65e60047c6
commit e51626ce53
No known key found for this signature in database

View file

@ -44,8 +44,8 @@ module.exports = {
}, },
tagLookup: (url, tagMap) => { tagLookup: (url, tagMap) => {
if (!url) return if (!url) return
if (url.includes('goodreads.com')) return '#Books #Reading' if (url.includes('https://goodreads.com')) return '#Books #Reading'
if (url.includes('letterboxd.com')) return '#Movies #Letterboxd' if (url.includes('https://letterboxd.com')) return '#Movies #Letterboxd'
return tagMap[url] || '' return tagMap[url] || ''
}, },
webmentionsByUrl: (webmentions, url) => { webmentionsByUrl: (webmentions, url) => {