Don't filter subdomains.

This commit is contained in:
Mike Cao
2020-08-27 19:11:35 -07:00
parent 78888c3728
commit 13ec32b1c9
+1 -1
View File
@@ -54,7 +54,7 @@ export const refFilter = (data, { domain, domainOnly, raw }) => {
}; };
if (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)); return data.filter(({ x }) => isValidRef(x) && !regex.test(x));
} }