Skip to content

Commit

Permalink
fix: CI compilation issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ABeltramo committed Oct 7, 2024
1 parent fea5448 commit 99fecc7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/moonlight-server/wolf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -244,10 +244,11 @@ auto setup_sessions_handlers(const immer::box<state::AppState> &app_state,
session->audio_sink->store(v_device);
}

session->event_bus->fire_event(immer::box<events::StartRunner>(
events::StartRunner{.stop_stream_when_over = true, .runner = session->app->runner, .stream_session = session

}));
session->event_bus->fire_event(immer::box<events::StartRunner>(events::StartRunner{
.stop_stream_when_over = true,
.runner = session->app->runner,
.stream_session = std::make_shared<events::StreamSession>(*session)
}));
}));

/* Start runner */
Expand Down

0 comments on commit 99fecc7

Please sign in to comment.