mirror of
https://github.com/rustdesk/rustdesk
synced 2026-05-24 09:28:23 +00:00
fix a potential crash
This commit is contained in:
parent
e0302d1f09
commit
28ddf6cf07
1 changed files with 1 additions and 1 deletions
|
|
@ -844,7 +844,7 @@ async fn check_software_update_() -> hbb_common::ResultType<()> {
|
|||
.path()
|
||||
.rsplit('/')
|
||||
.next()
|
||||
.unwrap();
|
||||
.unwrap_or_default();
|
||||
|
||||
let response_url = latest_release_response.url().to_string();
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue