瀏覽代碼

fix: clippy

Jonathan Kelley 3 年之前
父節點
當前提交
6bc45b1
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. 2 2
      packages/desktop/src/lib.rs

+ 2 - 2
packages/desktop/src/lib.rs

@@ -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())