Implement capability HTTP and downloads (#54)
All checks were successful
Native code generation / deterministic (push) Successful in 11m59s
Imaging and meshing gate / native (push) Successful in 3m55s
JPEG 2000 feature / linux (push) Successful in 2m26s
Native Rust workspace compile / compile (push) Successful in 3m58s
Skia feature / linux (push) Successful in 31m44s

This commit is contained in:
2026-08-09 15:44:42 +00:00
parent d298b4f4c4
commit 3032b16e7b
15 changed files with 5833 additions and 668 deletions

View File

@@ -802,7 +802,7 @@ fn sorted_entries(values: &HashMap<String, OSD>) -> Vec<(&String, &OSD)> {
}
fn decode_base16(value: &str) -> Result<Vec<u8>, &'static str> {
if value.len() % 2 != 0 {
if !value.len().is_multiple_of(2) {
return Err("invalid notation LLSD base16 length");
}
value