Skip to content

Commit

Permalink
Fix load plugins error (OctoLinker#421)
Browse files Browse the repository at this point in the history
This was introduced in OctoLinker#415 and is the root cause of the build error in OctoLinker#418.
  • Loading branch information
xt0rted authored and josephfrazier committed Dec 28, 2017
1 parent 63d9a1f commit 348f2b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/octo-linker.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import clickHandler from './click-handler';
import Plugins from './plugin-manager.js';
import insertLink from './insert-link';
import debugMode from './debug-mode.js';
import loadPlugins from './load-plugins';
import * as loadPlugins from './load-plugins';
import * as storage from './options/storage.js';

function initialize(self) {
debugMode(storage.get('debugMode'));
notification();

self._blobReader = new BlobReader();
self._pluginManager = new Plugins(loadPlugins());
self._pluginManager = new Plugins(loadPlugins);
clickHandler(self._pluginManager);
}

Expand Down

0 comments on commit 348f2b6

Please sign in to comment.