Don't filter subdomains.
This commit is contained in:
@@ -54,7 +54,7 @@ export const refFilter = (data, { domain, domainOnly, raw }) => {
|
||||
};
|
||||
|
||||
if (raw) {
|
||||
const regex = new RegExp(`http[s]?://([^.]+.)?${domain}`);
|
||||
const regex = new RegExp(`http[s]?://${domain}`);
|
||||
return data.filter(({ x }) => isValidRef(x) && !regex.test(x));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user