From 89189da06c5ee6175e4c30f19b05e28252d6fb38 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 17 May 2024 13:44:39 -0700 Subject: [PATCH] fix: simplify tags --- config/filters/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/filters/index.js b/config/filters/index.js index 88078b75..ef1a3494 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -55,9 +55,9 @@ export default { }, tagLookup: (url, tagMap) => { if (!url) return - if (url.includes('#artists')) return `#Music` - if (url.includes('openlibrary.org')) return `#Books #NowReading ${tagMap[url]}`.trim() - if (url.includes('themoviedb.org/movie')) return `#Movies #Watching` + if (url.includes('#artists')) return '#Music' + if (url.includes('openlibrary.org')) return '#Books #NowReading' + if (url.includes('themoviedb.org/movie')) return '#Movies #Watching' return tagMap[url] || '' },