diff options
author | Ilion Beyst <ilion.beyst@gmail.com> | 2022-06-10 21:09:33 +0200 |
---|---|---|
committer | Ilion Beyst <ilion.beyst@gmail.com> | 2022-06-10 21:09:33 +0200 |
commit | 5ee66c9c9b4156692c739a861c9cdbaf0c65aec8 (patch) | |
tree | 55c1ce0b99b26c6837304d72da772be6491882ff /planetwars-server/src/routes/matches.rs | |
parent | d1977b95c82f608bc558432cdfba8026aaf0648d (diff) | |
download | planetwars.dev-5ee66c9c9b4156692c739a861c9cdbaf0c65aec8.tar.xz planetwars.dev-5ee66c9c9b4156692c739a861c9cdbaf0c65aec8.zip |
allow match_player code_bundle_id to be null
Diffstat (limited to 'planetwars-server/src/routes/matches.rs')
-rw-r--r-- | planetwars-server/src/routes/matches.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/planetwars-server/src/routes/matches.rs b/planetwars-server/src/routes/matches.rs index b61008d..7169ebe 100644 --- a/planetwars-server/src/routes/matches.rs +++ b/planetwars-server/src/routes/matches.rs @@ -107,7 +107,7 @@ pub struct ApiMatch { #[derive(Serialize, Deserialize)] pub struct ApiMatchPlayer { - code_bundle_id: i32, + code_bundle_id: Option<i32>, bot_id: Option<i32>, bot_name: Option<String>, } @@ -127,7 +127,7 @@ pub fn match_data_to_api(data: matches::FullMatchData) -> ApiMatch { .match_players .iter() .map(|_p| ApiMatchPlayer { - code_bundle_id: _p.code_bundle.id, + code_bundle_id: _p.code_bundle.as_ref().map(|cb| cb.id), bot_id: _p.bot.as_ref().map(|b| b.id), bot_name: _p.bot.as_ref().map(|b| b.name.clone()), }) |