From 709ef906cc2d9ffc996dccab99c35fccdcf89697 Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Wed, 10 Nov 2021 00:22:01 -0500 Subject: [PATCH] Fix screenfull imports --- src/components/playback/playbackmanager.js | 2 +- src/plugins/bookPlayer/plugin.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/playback/playbackmanager.js b/src/components/playback/playbackmanager.js index 722ca522c..aa3328344 100644 --- a/src/components/playback/playbackmanager.js +++ b/src/components/playback/playbackmanager.js @@ -8,7 +8,7 @@ import * as userSettings from '../../scripts/settings/userSettings'; import globalize from '../../scripts/globalize'; import loading from '../loading/loading'; import { appHost } from '../apphost'; -import * as Screenfull from 'screenfull'; +import Screenfull from 'screenfull'; import ServerConnections from '../ServerConnections'; import alert from '../alert'; diff --git a/src/plugins/bookPlayer/plugin.js b/src/plugins/bookPlayer/plugin.js index 5e5908cb3..ac91cf6aa 100644 --- a/src/plugins/bookPlayer/plugin.js +++ b/src/plugins/bookPlayer/plugin.js @@ -5,7 +5,7 @@ import loading from '../../components/loading/loading'; import keyboardnavigation from '../../scripts/keyboardNavigation'; import dialogHelper from '../../components/dialogHelper/dialogHelper'; import ServerConnections from '../../components/ServerConnections'; -import * as Screenfull from 'screenfull'; +import Screenfull from 'screenfull'; import TableOfContents from './tableOfContents'; import dom from '../../scripts/dom'; import { translateHtml } from '../../scripts/globalize';