Browse Source

tweak: use 2018 rust syntax instead of 2022 for formatting

Jonathan Kelley 3 năm trước cách đây
mục cha
commit
fa020c53e4
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      packages/desktop/src/lib.rs

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

@@ -248,7 +248,7 @@ pub fn launch_with_props<P: 'static + Send>(
 
                             // do not let path searching to go two layers beyond the caller level
                             let data = read(path_buf)?;
-                            let meta = format!("{mime}");
+                            let meta = format!("{}", mime);
 
                             wry::http::ResponseBuilder::new().mimetype(&meta).body(data)
                         }