Index: lib/iniParser.js |
=================================================================== |
--- a/lib/iniParser.js |
+++ b/lib/iniParser.js |
@@ -102,20 +102,17 @@ |
case "subscription filters": |
if (this.subscriptions.length) |
{ |
let currentSubscription = this.subscriptions[ |
this.subscriptions.length - 1 |
]; |
for (let text of this._curObj) |
- { |
currentSubscription.addFilterText(text); |
- Filter.fromText(text).addSubscription(currentSubscription); |
Manish Jethani
2019/03/30 21:01:44
A side effect of this change is that `Filter` obje
hub
2019/04/04 03:48:15
In this patch or in a future one?
Manish Jethani
2019/04/04 05:44:20
In a future one, because it is an enhancement on t
hub
2019/04/04 20:54:44
Acknowledged.
|
- } |
} |
break; |
} |
} |
if (line === null) |
return; |