diff --git a/js/actionCreators/media.ts b/js/actionCreators/media.ts index 295e9c5b..703fb3b7 100644 --- a/js/actionCreators/media.ts +++ b/js/actionCreators/media.ts @@ -56,7 +56,7 @@ export function pause(): Dispatchable { if (status === MEDIA_STATUS.PLAYING) { dispatch({ type: PAUSE }); } else { - dispatch({ type: PAUSE }); + dispatch({ type: PLAY }); } }; }