diff --git a/src/sagas/nowPlaying.ts b/src/sagas/nowPlaying.ts index 3231c88..848716e 100644 --- a/src/sagas/nowPlaying.ts +++ b/src/sagas/nowPlaying.ts @@ -24,8 +24,8 @@ function* watchPlayback () { const body = yield* call(() => spotifyFetch('me/player')) if (body) { const action = Actions.updatePlayback(body as Playback) - yield* put(action) yield* call(onPlaybackUpdated, action) + yield* put(action) timeout = initialTimeout } } catch (e) {