LEFT | RIGHT |
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-2016 Eyeo GmbH | 3 * Copyright (C) 2006-2016 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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 changeListeners.set(page, listenerFilters); | 149 changeListeners.set(page, listenerFilters); |
150 } | 150 } |
151 return listenerFilters; | 151 return listenerFilters; |
152 } | 152 } |
153 | 153 |
154 port.on("app.get", (message, sender) => | 154 port.on("app.get", (message, sender) => |
155 { | 155 { |
156 if (message.what == "issues") | 156 if (message.what == "issues") |
157 { | 157 { |
158 let subscriptionInit = tryRequire("subscriptionInit"); | 158 let subscriptionInit = tryRequire("subscriptionInit"); |
159 return { | 159 let result = subscriptionInit ? subscriptionInit.reinitialized : false; |
160 filterlistsReinitialized: subscriptionInit | 160 return {filterlistsReinitialized: result}; |
161 ? subscriptionInit.reinitialized : false | |
162 }; | |
163 } | 161 } |
164 | 162 |
165 if (message.what == "doclink") | 163 if (message.what == "doclink") |
166 return Utils.getDocLink(message.link); | 164 return Utils.getDocLink(message.link); |
167 | 165 |
168 if (message.what == "localeInfo") | 166 if (message.what == "localeInfo") |
169 { | 167 { |
170 let bidiDir; | 168 let bidiDir; |
171 if ("chromeRegistry" in Utils) | 169 if ("chromeRegistry" in Utils) |
172 { | 170 { |
(...skipping 251 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 if (message.url) | 422 if (message.url) |
425 subscriptions = [Subscription.fromURL(message.url)]; | 423 subscriptions = [Subscription.fromURL(message.url)]; |
426 | 424 |
427 for (let subscription of subscriptions) | 425 for (let subscription of subscriptions) |
428 { | 426 { |
429 if (subscription instanceof DownloadableSubscription) | 427 if (subscription instanceof DownloadableSubscription) |
430 Synchronizer.execute(subscription, true); | 428 Synchronizer.execute(subscription, true); |
431 } | 429 } |
432 }); | 430 }); |
433 })(this); | 431 })(this); |
LEFT | RIGHT |