diff options
Diffstat (limited to 'planetwars-server/src/routes/bots.rs')
-rw-r--r-- | planetwars-server/src/routes/bots.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/planetwars-server/src/routes/bots.rs b/planetwars-server/src/routes/bots.rs index 5f5d8f5..0edfaa9 100644 --- a/planetwars-server/src/routes/bots.rs +++ b/planetwars-server/src/routes/bots.rs @@ -24,7 +24,7 @@ pub async fn create_bot( params: Json<BotParams>, ) -> (StatusCode, Json<Bot>) { let bot_params = bots::NewBot { - owner_id: user.id, + owner_id: Some(user.id), name: ¶ms.name, }; let bot = bots::create_bot(&bot_params, &conn).unwrap(); @@ -71,7 +71,7 @@ pub async fn upload_code_multipart( let bot = bots::find_bot(bot_id, &conn).map_err(|_| StatusCode::NOT_FOUND)?; - if user.id != bot.owner_id { + if Some(user.id) != bot.owner_id { return Err(StatusCode::FORBIDDEN); } |