Don't filter subdomains.
parent
78888c3728
commit
13ec32b1c9
|
@ -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));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue