diff options
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | src/handlers/planets.rs | 4 | 
2 files changed, 3 insertions, 3 deletions
| @@ -1,6 +1,6 @@  [package]  name = "solard" -version = "0.3.0" +version = "0.3.1"  edition = "2021"  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src/handlers/planets.rs b/src/handlers/planets.rs index 5641814..f5f1098 100644 --- a/src/handlers/planets.rs +++ b/src/handlers/planets.rs @@ -130,7 +130,7 @@ pub async fn new_planet(Json(new_planet): Json<NewPlanet>) -> JsonResult<Json<Pl          new_planet.max_cpus,          new_planet.disk_size_mb,          ship.clone(), -        format!("http://{}", hw_url.clone) +        Some(format!("http://{}", hw_url.clone()))      );      match r {          Err(e) => match e { @@ -142,7 +142,7 @@ pub async fn new_planet(Json(new_planet): Json<NewPlanet>) -> JsonResult<Json<Pl                      new_planet.max_cpus,                      new_planet.disk_size_mb,                      ship.clone(), -        format!("http://{}", hw_url.clone) +        Some(format!("http://{}", hw_url.clone()))                  )?));              }              _ => { | 
