Skip to content

Commit 1252028

Browse files
committed
fix: Explicitly note Firefox 49 for temp-installs
The remote temporary installation approach, introduced by #282 , required Firefox 49. This adds that version requirement to the error message.
1 parent 0c8bd85 commit 1252028

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/firefox/remote.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export class RemoteFirefox {
7575
`listTabs returned a falsey addonsActor: ${response.addonsActor}`);
7676
throw new WebExtError(
7777
'This is an older version of Firefox that does not provide an ' +
78-
'add-ons actor for remote control');
78+
'add-ons actor for remote installation. Try Firefox 49 or higher.');
7979
}
8080
this.client.client.makeRequest(
8181
{to: response.addonsActor, type: 'installTemporaryAddon', addonPath},

0 commit comments

Comments
 (0)