diff options
Diffstat (limited to 'src/handlers/planets.rs')
-rw-r--r-- | src/handlers/planets.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/handlers/planets.rs b/src/handlers/planets.rs index 8593026..5641814 100644 --- a/src/handlers/planets.rs +++ b/src/handlers/planets.rs @@ -130,6 +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) ); match r { Err(e) => match e { @@ -141,6 +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) )?)); } _ => { |