 Issue 30013625:
  Issue 7094 - Link filters with subscriptions in INI parser  (Closed) 
  Base URL: https://hg.adblockplus.org/adblockpluscore/
    
  
    Issue 30013625:
  Issue 7094 - Link filters with subscriptions in INI parser  (Closed) 
  Base URL: https://hg.adblockplus.org/adblockpluscore/| Index: lib/iniParser.js | 
| =================================================================== | 
| --- a/lib/iniParser.js | 
| +++ b/lib/iniParser.js | 
| @@ -102,17 +102,20 @@ | 
| 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); | 
| + } | 
| } | 
| break; | 
| } | 
| } | 
| if (line === null) | 
| return; |