From cd5cd31fbb9e8e89f0391eb81de6084471014deb Mon Sep 17 00:00:00 2001 From: Richard Walters Date: Wed, 7 Oct 2020 18:50:20 -0700 Subject: (Rust) Uri::is_path_absolute: match against whole path, not first segment --- src/lib.rs | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 6a36c9f..40d32e4 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -633,14 +633,8 @@ impl Uri { } fn is_path_absolute(path: &[Vec]) -> bool { - // TODO: Explore this alternate syntax to see if it works. - // - // match path { - // [segment, ..] if segment.is_empty() => true, - // _ => false - // } - match path.first() { - Some(segment) if segment.is_empty() => true, + match path { + [segment, ..] if segment.is_empty() => true, _ => false } } -- cgit v1.2.3