diff --git a/src/extension/run-control.ts b/src/extension/run-control.ts index 4a6fdd9..d6e63e3 100644 --- a/src/extension/run-control.ts +++ b/src/extension/run-control.ts @@ -111,10 +111,10 @@ async function changeActiveRun(id?: string): Promise { if (!runData) { throw new Error(`Run with ID ${id} was not found`); } else { - const noTwitchGame = await updateTwitchInformation(runData); runDataActiveRun.value = clone(runData); to(resetTimer(true)); nodecg.log.debug(`[Run Control] Active run changed to ${id}`); + const noTwitchGame = await updateTwitchInformation(runData); return noTwitchGame; } } catch (err) {