This commit is contained in:
syuilo 2019-05-15 17:05:41 +09:00
parent e5409db0e8
commit a6befdd541
No known key found for this signature in database
GPG Key ID: BDC4C49D06AB9D69
1 changed files with 12 additions and 10 deletions

View File

@ -53,6 +53,7 @@ export default define(meta, async (ps) => {
if (blackDomains.length > 0) {
query.andWhere(new Brackets(qb => {
for (const blackDomain of blackDomains) {
qb.andWhere(new Brackets(qb => {
const subDomains = blackDomain.split('.');
let i = 0;
for (const subDomain of subDomains) {
@ -63,6 +64,7 @@ export default define(meta, async (ps) => {
qb.orWhere(`log.domain[${i + 1}] != :${p}`, { [p]: subDomain });
i++;
}
}));
}
}));
}