forgot to remove debug statements

This commit is contained in:
Erik 2024-01-27 14:59:12 +02:00
parent 3ae2f5f708
commit 9be9855910

View File

@ -534,13 +534,13 @@ export default class AutoModeration extends Observer implements Initialisable
return; return;
const content = msg.content.split('').join(''); // Copy the string... const content = msg.content.split('').join(''); // Copy the string...
let matches = content.match(this.regex.linkRegG); let matches = content.match(this.regex.linkRegG);
console.log('matches', matches); // console.log('matches', matches);
let removedWhitespace = false; let removedWhitespace = false;
if (!matches) if (!matches)
{ {
matches = content.replace(/\s/u, '').match(this.regex.linkRegG); matches = content.replace(/\s/u, '').match(this.regex.linkRegG);
removedWhitespace = true; removedWhitespace = true;
console.log('secondary matches', matches); // console.log('secondary matches', matches);
} }
if (!matches) if (!matches)
@ -552,7 +552,7 @@ export default class AutoModeration extends Observer implements Initialisable
for (const match of matches) for (const match of matches)
{ {
let domain = match.match(this.regex.linkReg)!.groups?.domain; let domain = match.match(this.regex.linkReg)!.groups?.domain;
console.log('domain', domain); // console.log('domain', domain);
if (!domain) if (!domain)
continue; continue;
domain = domain.toLowerCase(); domain = domain.toLowerCase();
@ -589,11 +589,11 @@ export default class AutoModeration extends Observer implements Initialisable
const parts = domain.split('.'); const parts = domain.split('.');
const validTld = this.topLevelDomains.find(parts[parts.length - 1]); const validTld = this.topLevelDomains.find(parts[parts.length - 1]);
console.log(parts, validTld); // console.log(parts, validTld);
if (!validTld) if (!validTld)
continue; continue;
const valid = await resolver.validateDomain(domain); const valid = await resolver.validateDomain(domain);
console.log('valid domain?', valid); // console.log('valid domain?', valid);
if (removedWhitespace && !match.includes(`${domain}/`)) if (removedWhitespace && !match.includes(`${domain}/`))
continue; continue;