From f8ac5d0d6063a30ba768cc689b918c65f79d85d2 Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Thu, 19 Sep 2019 13:18:35 -0400 Subject: [PATCH] fix: typo --- src/ui/component/fileViewer/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ui/component/fileViewer/view.jsx b/src/ui/component/fileViewer/view.jsx index 6ee73e178..b69cd3b2e 100644 --- a/src/ui/component/fileViewer/view.jsx +++ b/src/ui/component/fileViewer/view.jsx @@ -115,7 +115,7 @@ export default function FileViewer(props: Props) { } const hidePlayer = - !isPlaying || !uri || (!inline && (!floatingPlayerEnabled || ['audio', 'video'].includes(mediaType))); + !isPlaying || !uri || (!inline && (!floatingPlayerEnabled || !['audio', 'video'].includes(mediaType))); if (hidePlayer) { return null;