fix: url checks
This commit is contained in:
parent
65e60047c6
commit
e51626ce53
1 changed files with 2 additions and 2 deletions
|
@ -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) => {
|
||||||
|
|
Reference in a new issue