Skip to content
This repository has been archived by the owner on Feb 29, 2020. It is now read-only.

Commit

Permalink
fix(systemaddon): Always pass params to win.openLinkIn. Closes #3084. (
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamHillier committed Aug 3, 2017
1 parent 62be2b7 commit 3285650
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system-addon/lib/PlacesFeed.jsm
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ class PlacesFeed {
if (action.data.referrer) {
win.openLinkIn(action.data.url, where, {referrerURI: Services.io.newURI(action.data.referrer)});
} else {
win.openLinkIn(action.data.url, where);
win.openLinkIn(action.data.url, where, {});
}
break;
}
Expand Down

0 comments on commit 3285650

Please sign in to comment.