OLD | NEW |
1 /* | 1 /* |
2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
4 * | 4 * |
5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
8 * | 8 * |
9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
102 | 102 |
103 case "subscription filters": | 103 case "subscription filters": |
104 if (this.subscriptions.length) | 104 if (this.subscriptions.length) |
105 { | 105 { |
106 let currentSubscription = this.subscriptions[ | 106 let currentSubscription = this.subscriptions[ |
107 this.subscriptions.length - 1 | 107 this.subscriptions.length - 1 |
108 ]; | 108 ]; |
109 for (let text of this._curObj) | 109 for (let text of this._curObj) |
110 { | 110 { |
111 let filter = Filter.fromText(text); | 111 let filter = Filter.fromText(text); |
112 currentSubscription.filters.push(filter); | 112 currentSubscription.addFilter(filter, true); |
113 filter.addSubscription(currentSubscription); | 113 filter.addSubscription(currentSubscription); |
114 } | 114 } |
115 } | 115 } |
116 break; | 116 break; |
117 } | 117 } |
118 } | 118 } |
119 | 119 |
120 if (line === null) | 120 if (line === null) |
121 return; | 121 return; |
122 | 122 |
(...skipping 21 matching lines...) Expand all Loading... |
144 } | 144 } |
145 finally | 145 finally |
146 { | 146 { |
147 Filter.knownFilters = origKnownFilters; | 147 Filter.knownFilters = origKnownFilters; |
148 Subscription.knownSubscriptions = origKnownSubscriptions; | 148 Subscription.knownSubscriptions = origKnownSubscriptions; |
149 } | 149 } |
150 } | 150 } |
151 } | 151 } |
152 | 152 |
153 exports.INIParser = INIParser; | 153 exports.INIParser = INIParser; |
OLD | NEW |