async hasBanRule(item) {
        const banRules = await this.getBanRules();
        const matchFilter = (b) => {
            const keys = Object.keys(b).filter((x) => b[x]);
            const matches = keys.map((k) => b[k] === item[k]);