diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-01-14 23:00:32 +0100 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2019-01-14 23:00:32 +0100 |
commit | c80c9cc4020be922207dfb136541c0f9b8eba1b5 (patch) | |
tree | 88884671a7a4a54552437bafe99796545b744ded | |
parent | fb1d4c9712eb1898d89f90edfc6120ff169e6357 (diff) | |
download | uxp-c80c9cc4020be922207dfb136541c0f9b8eba1b5.tar.gz |
[WebExAM] Use proper application name in WebExtension API error message.
-rw-r--r-- | toolkit/components/webextensions/ExtensionUtils.jsm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/toolkit/components/webextensions/ExtensionUtils.jsm b/toolkit/components/webextensions/ExtensionUtils.jsm index e7f768c07c..04e767cb5c 100644 --- a/toolkit/components/webextensions/ExtensionUtils.jsm +++ b/toolkit/components/webextensions/ExtensionUtils.jsm @@ -990,7 +990,8 @@ function findPathInObject(obj, path, printErrors = true) { for (let elt of path.split(".")) { if (!obj || !(elt in obj)) { if (printErrors) { - Cu.reportError(`WebExtension API ${path} not found (it may be unimplemented by Firefox).`); + let appname = Services.appinfo.name; + Cu.reportError(`WebExtension API ${path} not found (it may be unimplemented by ${appname}).`); } return null; } |