| Index: lib/subscriptionInit.js | 
| =================================================================== | 
| --- a/lib/subscriptionInit.js | 
| +++ b/lib/subscriptionInit.js | 
| @@ -200,17 +200,17 @@ | 
| { | 
| FilterStorage.addSubscription(subscription); | 
| if (subscription instanceof DownloadableSubscription && | 
| !subscription.lastDownload) | 
| Synchronizer.execute(subscription); | 
| } | 
|  | 
| if (firstRun && !Prefs.suppress_first_run_page) | 
| -    chrome.tabs.create({url: ext.getURL("firstRun.html")}); | 
| +    browser.tabs.create({url: ext.getURL("firstRun.html")}); | 
|  | 
| initNotifications(); | 
| } | 
|  | 
| Promise.all([FilterNotifier.once("load"), | 
| Prefs.untilLoaded]).then(detectFirstRun) | 
| .then(getSubscriptions) | 
| .then(finishInitialization); | 
|  |