Skip to content

Commit

Permalink
add missing change
Browse files Browse the repository at this point in the history
  • Loading branch information
wescopeland committed Nov 13, 2024
1 parent 6f04b04 commit cf54efc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rc_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -2371,7 +2371,7 @@ static void rc_client_begin_fetch_game_data(rc_client_load_state_t* load_state)
fetch_game_data_request.username = client->user.username;
fetch_game_data_request.api_token = client->user.token;
fetch_game_data_request.game_id = load_state->hash->game_id;
fetch_game_data_request.game_hash = load_state->hash->hash;
fetch_game_data_request.game_hash = client->game ? client->game->public_.hash : load_state->hash->hash;

result = rc_api_init_fetch_game_data_request(&request, &fetch_game_data_request);
if (result != RC_OK) {
Expand Down

0 comments on commit cf54efc

Please sign in to comment.