Skip to content

Commit

Permalink
fix: Explicitly note Firefox 49 for temp-installs
Browse files Browse the repository at this point in the history
The remote temporary installation approach, introduced by #282 , required Firefox 49. This adds that version requirement to the error message.
  • Loading branch information
kumar303 committed Jun 20, 2016
1 parent 0c8bd85 commit 1252028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/firefox/remote.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export class RemoteFirefox {
`listTabs returned a falsey addonsActor: ${response.addonsActor}`);
throw new WebExtError(
'This is an older version of Firefox that does not provide an ' +
'add-ons actor for remote control');
'add-ons actor for remote installation. Try Firefox 49 or higher.');
}
this.client.client.makeRequest(
{to: response.addonsActor, type: 'installTemporaryAddon', addonPath},
Expand Down

0 comments on commit 1252028

Please sign in to comment.