 Issue 29934588:
  Issue 7094 - Encapsulate management of subscription filters  (Closed) 
  Base URL: https://hg.adblockplus.org/adblockpluscore/
    
  
    Issue 29934588:
  Issue 7094 - Encapsulate management of subscription filters  (Closed) 
  Base URL: https://hg.adblockplus.org/adblockpluscore/| Index: lib/iniParser.js | 
| =================================================================== | 
| --- a/lib/iniParser.js | 
| +++ b/lib/iniParser.js | 
| @@ -104,17 +104,17 @@ | 
| if (this.subscriptions.length) | 
| { | 
| let currentSubscription = this.subscriptions[ | 
| this.subscriptions.length - 1 | 
| ]; | 
| for (let text of this._curObj) | 
| { | 
| let filter = Filter.fromText(text); | 
| - currentSubscription.filters.push(filter); | 
| + currentSubscription.addFilter(filter); | 
| filter.addSubscription(currentSubscription); | 
| } | 
| } | 
| break; | 
| } | 
| } | 
| if (line === null) |