Skip to content

Commit

Permalink
fix currentCookieStoreId left undefined #1312
Browse files Browse the repository at this point in the history
  • Loading branch information
garywill committed Dec 9, 2019
1 parent e44fcdf commit b8ad4e8
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/js/background/assignManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -490,6 +490,9 @@ const assignManager = {
currentCookieStoreId = backgroundLogic.cookieStoreId(currentUserContextId);
confirmUrl += `&currentCookieStoreId=${currentCookieStoreId}`;
}
else {
currentCookieStoreId = "firefox-default";
}
browser.tabs.create({
url: confirmUrl,
cookieStoreId: currentCookieStoreId,
Expand Down

0 comments on commit b8ad4e8

Please sign in to comment.