| Index: lib/filterStorage.js |
| =================================================================== |
| --- a/lib/filterStorage.js |
| +++ b/lib/filterStorage.js |
| @@ -761,17 +761,17 @@ |
| this.wantObj = true; |
| this.curObj = {}; |
| break; |
| case "subscription filters": |
| this.wantObj = false; |
| this.curObj = []; |
| break; |
| default: |
| - this.wantObj = undefined; |
|
Manish Jethani
2018/06/12 04:33:25
There's no reason to specifically assign this to u
|
| + this.wantObj = null; |
| this.curObj = null; |
| } |
| } |
| else if (this.wantObj === false && val) |
| this.curObj.push(val.replace(/\\\[/g, "[")); |
| } |
| finally |
| { |