meta: make clippy happy
parent
cacd80b283
commit
ae89e06655
|
@ -880,16 +880,12 @@ fn override_endpoint(
|
|||
} else {
|
||||
None
|
||||
};
|
||||
endpoint.map(|endpoint| EndpointContents::Set(endpoint))
|
||||
endpoint.map(EndpointContents::Set)
|
||||
};
|
||||
|
||||
if let Some(contents) = endpoint_contents {
|
||||
log::info!("Updating endpoint.");
|
||||
Api::new(&config.server).http_form(
|
||||
"PUT",
|
||||
"/user/endpoint",
|
||||
contents,
|
||||
)?;
|
||||
Api::new(&config.server).http_form("PUT", "/user/endpoint", contents)?;
|
||||
} else {
|
||||
log::info!("exiting without overriding endpoint.");
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue