fix: clippy

This commit is contained in:
Jonathan Kelley 2022-01-10 13:00:23 -05:00
parent bad36162af
commit 6bc45b1c50
1 changed files with 2 additions and 2 deletions

View File

@ -196,11 +196,11 @@ pub fn launch_with_props<P: 'static + Send>(
// For now, we only serve two pieces of content which get included as bytes into the final binary.
let path = request.uri().replace("dioxus://", "");
if path.trim_end_matches("/") == "index.html" {
if path.trim_end_matches('/') == "index.html" {
wry::http::ResponseBuilder::new()
.mimetype("text/html")
.body(include_bytes!("./index.html").to_vec())
} else if path.trim_end_matches("/") == "index.html/index.js" {
} else if path.trim_end_matches('/') == "index.html/index.js" {
wry::http::ResponseBuilder::new()
.mimetype("text/javascript")
.body(include_bytes!("./index.js").to_vec())