This commit is contained in:
notplants 2021-05-25 16:05:54 +02:00
parent 43e3a64143
commit a11c146ec5
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ pub fn run() -> Result<(), BoxError> {
// if it has a valid format, check if its available
else {
let result = check_domain_available(&d.domain);
Ok(Value::Bool(result))
Ok(Value::String(result.to_string()))
}
},
Err(e) => Err(Error::from(PeachDynDnsError::MissingParams { e })),