diff --git a/core/src/api/deployment.rs b/core/src/api/deployment.rs index ab54b40d9..b34fe99a0 100644 --- a/core/src/api/deployment.rs +++ b/core/src/api/deployment.rs @@ -489,10 +489,10 @@ impl State { if let Some(version) = update.version { Ok(version.to_string()) } else { - Ok("latest".to_string()) + Ok("unknown".to_string()) } } else { - Ok("latest".to_string()) + Ok("unknown".to_string()) } } else { let split = deployment @@ -503,7 +503,7 @@ impl State { if let Some(version) = split.get(1) { Ok(version.to_string()) } else { - Ok("latest".to_string()) + Ok("unknown".to_string()) } } }