From 982a47496543cc0aee7a2d841c2315359ece7a28 Mon Sep 17 00:00:00 2001 From: Cromefire_ Date: Tue, 21 Jul 2020 22:33:18 +0200 Subject: [PATCH] Fix Octopus import Co-authored-by: Cameron --- src/plugins/htmlVideoPlayer/plugin.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/htmlVideoPlayer/plugin.js b/src/plugins/htmlVideoPlayer/plugin.js index 802bb58001..cd68db5b34 100644 --- a/src/plugins/htmlVideoPlayer/plugin.js +++ b/src/plugins/htmlVideoPlayer/plugin.js @@ -1184,7 +1184,7 @@ function supportsTextTracks() { resizeVariation: 0.2, renderAhead: 90 }; - import('JavascriptSubtitlesOctopus').then(SubtitlesOctopus => { + import('JavascriptSubtitlesOctopus').then(({default: SubtitlesOctopus}) => { this.currentSubtitlesOctopus = new SubtitlesOctopus(options); }); }