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) |
- ext.pages.open(ext.getURL("firstRun.html")); |
+ chrome.tabs.create({url: ext.getURL("firstRun.html")}); |
initNotifications(); |
} |
Promise.all([FilterNotifier.once("load"), |
Prefs.untilLoaded]).then(detectFirstRun) |
.then(getSubscriptions) |
.then(finishInitialization); |