Removed a lazy hack thats no longer needed due to an improved server-side config

This commit is contained in:
rainbow napkin 2026-07-03 01:54:55 -04:00
parent aa8658a06f
commit 96a6f5c0d2
3 changed files with 3 additions and 12 deletions

View file

@ -35,15 +35,6 @@ module.exports.cache = new Map();
module.exports.markLink = async function(dirtyLink){
const link = sanitizeUrl(dirtyLink);
//If this link is referencing this web server
if(link.match(new RegExp(`^${config.protocol}://${config.domain}`)) != null){
//Lazily return it as a good link, since we know it'll at least return a good 404 page XP
return {
link,
type: "link"
}
}
//Check link cache for the requested link
const cachedLink = module.exports.cache.get(link);