From 1267eeb0d1b2634cb4a7098a2af1ee10e29e603a Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Tue, 13 Aug 2019 16:54:57 -0400 Subject: [PATCH] don't call 'get' on web --- src/ui/component/fileViewerInitiator/index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ui/component/fileViewerInitiator/index.js b/src/ui/component/fileViewerInitiator/index.js index ca030a311..c15537218 100644 --- a/src/ui/component/fileViewerInitiator/index.js +++ b/src/ui/component/fileViewerInitiator/index.js @@ -27,7 +27,9 @@ const select = (state, props) => ({ const perform = dispatch => ({ play: uri => { dispatch(doSetPlayingUri(uri)); + // @if TARGET='app' dispatch(doPlayUri(uri)); + // @endif }, });