fix opening files externally on desktop

This commit is contained in:
Sean Yesmunt 2020-12-11 12:30:47 -05:00
parent d3f0e471e5
commit 138d84155b

View file

@ -26,7 +26,7 @@ const select = (state, props) => ({
const perform = dispatch => ({
openModal: (modal, props) => dispatch(doOpenModal(modal, props)),
pause: () => dispatch(doSetPlayingUri(null)),
pause: () => dispatch(doSetPlayingUri({ uri: null })),
download: uri => dispatch(doPlayUri(uri, false, true, () => dispatch(doAnalyticsView(uri)))),
});