1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-26 23:17:42 +02:00

build: add coverage recipes to justfile

This commit is contained in:
Rob Ede
2024-06-10 01:58:13 +01:00
parent 7f529e35b2
commit 53086a90a6
2 changed files with 10 additions and 1 deletions

View File

@ -27,7 +27,8 @@ fn bare_address(val: &str) -> &str {
val.split("]:")
.next()
.map(|s| s.trim_start_matches('[').trim_end_matches(']'))
// This shouldn't *actually* ever happen
// this indicates that the IPv6 address is malformed so shouldn't
// usually happen, but if it does, just return the original input
.unwrap_or(val)
} else {
val.split(':').next().unwrap_or(val)