Merge pull request #535 from sleepypikachu/fix-issue-534

Correct spelling of WebExtensions
jh-changes
Shin'ya Ueoka 5 years ago committed by GitHub
commit b5a85ad059
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/background/usecases/operation.js

@ -195,7 +195,7 @@ export default class OperationInteractor {
let us = urls.homepageUrls(result.value);
if (us.length === 1 && us[0] === 'about:home') {
// eslint-disable-next-line max-len
throw new Error('Cannot open Firefox Home (about:home) by WebExnteions, set your custom URLs');
throw new Error('Cannot open Firefox Home (about:home) by WebExtensions, set your custom URLs');
}
if (us.length === 1 && !newTab) {
return this.tabPresenter.open(us[0], tab.id);