forked from Galactic/galactic-bot
forgot to remove debug statements
This commit is contained in:
parent
3ae2f5f708
commit
9be9855910
@ -534,13 +534,13 @@ export default class AutoModeration extends Observer implements Initialisable
|
||||
return;
|
||||
const content = msg.content.split('').join(''); // Copy the string...
|
||||
let matches = content.match(this.regex.linkRegG);
|
||||
console.log('matches', matches);
|
||||
// console.log('matches', matches);
|
||||
let removedWhitespace = false;
|
||||
if (!matches)
|
||||
{
|
||||
matches = content.replace(/\s/u, '').match(this.regex.linkRegG);
|
||||
removedWhitespace = true;
|
||||
console.log('secondary matches', matches);
|
||||
// console.log('secondary matches', matches);
|
||||
}
|
||||
|
||||
if (!matches)
|
||||
@ -552,7 +552,7 @@ export default class AutoModeration extends Observer implements Initialisable
|
||||
for (const match of matches)
|
||||
{
|
||||
let domain = match.match(this.regex.linkReg)!.groups?.domain;
|
||||
console.log('domain', domain);
|
||||
// console.log('domain', domain);
|
||||
if (!domain)
|
||||
continue;
|
||||
domain = domain.toLowerCase();
|
||||
@ -589,11 +589,11 @@ export default class AutoModeration extends Observer implements Initialisable
|
||||
|
||||
const parts = domain.split('.');
|
||||
const validTld = this.topLevelDomains.find(parts[parts.length - 1]);
|
||||
console.log(parts, validTld);
|
||||
// console.log(parts, validTld);
|
||||
if (!validTld)
|
||||
continue;
|
||||
const valid = await resolver.validateDomain(domain);
|
||||
console.log('valid domain?', valid);
|
||||
// console.log('valid domain?', valid);
|
||||
|
||||
if (removedWhitespace && !match.includes(`${domain}/`))
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user