diff --git a/exec/load/ircd/config.js b/exec/load/ircd/config.js index 22692429a57a156c071cc723c1ec965ca8b24c2b..a1f43ad2ec48d01ef2e514254514e34be4168d42 100644 --- a/exec/load/ircd/config.js +++ b/exec/load/ircd/config.js @@ -868,6 +868,6 @@ function ZLine(ipmask,reason) { function RBL_Config_Object(hostname, good, bad) { this.hostname = hostname; - this.good = this.good ? good.split(",") : ""; - this.bad = this.bad ? bad.split(",") : ""; + this.good = good ? good.split(",") : ""; + this.bad = bad ? bad.split(",") : ""; }