mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-09-04 16:59:39 +00:00
refact: http, rust side, log errror (#12820)
Signed-off-by: fufesou <linlong1266@gmail.com>
This commit is contained in:
@@ -148,7 +148,7 @@ impl OidcSession {
|
||||
id: &str,
|
||||
uuid: &str,
|
||||
) -> ResultType<HbbHttpResponse<OidcAuthUrl>> {
|
||||
Ok(OIDC_SESSION
|
||||
let resp = OIDC_SESSION
|
||||
.read()
|
||||
.unwrap()
|
||||
.client
|
||||
@@ -159,8 +159,14 @@ impl OidcSession {
|
||||
"uuid": uuid,
|
||||
"deviceInfo": crate::ui_interface::get_login_device_info(),
|
||||
}))
|
||||
.send()?
|
||||
.try_into()?)
|
||||
.send()?;
|
||||
let status = resp.status();
|
||||
match resp.try_into() {
|
||||
Ok(v) => Ok(v),
|
||||
Err(err) => {
|
||||
hbb_common::bail!("Http status: {}, err: {}", status, err);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn query(
|
||||
|
Reference in New Issue
Block a user