Skip to content

Commit

Permalink
Remove 'chrome' string from error message
Browse files Browse the repository at this point in the history
Library supports running both in Chrome and Firefox so don't assume we are in a chrome extension in the error message.
  • Loading branch information
asimen1 authored Dec 13, 2019
1 parent d82314e commit 68bfd4e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ const Utils = {
retVal = Constants.CONTENT_SCRIPT;
}
} else {
loggerError.error('Could not identify extension part... are you running in a chrome extension context?');
loggerError.error('Could not identify extension part... are you running in an extension context?');
}

loggerLog.log('detected current extension part: ' + retVal);
Expand Down

0 comments on commit 68bfd4e

Please sign in to comment.