| Index: chrome/content/ui/filters-subscriptionactions.js |
| =================================================================== |
| --- a/chrome/content/ui/filters-subscriptionactions.js |
| +++ b/chrome/content/ui/filters-subscriptionactions.js |
| @@ -105,29 +105,29 @@ var SubscriptionActions = |
| /** |
| * Triggers re-download of a filter subscription. |
| */ |
| updateFilters: function(/**Node*/ node) |
| { |
| let data = Templater.getDataForNode(node || this.selectedItem); |
| if (data && data.subscription instanceof DownloadableSubscription) |
| - Synchronizer.execute(data.subscription, true, true); |
| + Synchronizer.execute(data.subscription, true); |
| }, |
| /** |
| * Triggers re-download of all filter subscriptions. |
| */ |
| updateAllFilters: function() |
| { |
| for (let i = 0; i < FilterStorage.subscriptions.length; i++) |
| { |
| let subscription = FilterStorage.subscriptions[i]; |
| if (subscription instanceof DownloadableSubscription) |
| - Synchronizer.execute(subscription, true, true); |
| + Synchronizer.execute(subscription, true); |
| } |
| }, |
| /** |
| * Sets Subscription.disabled field to a new value. |
| */ |
| setDisabled: function(/**Element*/ node, /**Boolean*/ value) |
| { |