ci: update Rust to 1.81.0

This commit is contained in:
link2xt
2024-09-08 06:09:31 +00:00
parent 2e2ba96d75
commit 0782b5abdd
4 changed files with 8 additions and 8 deletions

View File

@@ -72,7 +72,7 @@ pub(super) fn decode_login(qr: &str) -> Result<Qr> {
.unwrap_or(url_without_scheme);
let addr = payload
.split(|c| c == '?' || c == '/')
.split(['?', '/'])
.next()
.context("invalid DCLOGIN payload E3")?;