Browse Source

fix(server) typo

Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev>
Daniel Thompson-Yvetot 6 years ago
parent
commit
58af6c1abb
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lib/rust/src/server.rs

+ 1 - 1
lib/rust/src/server.rs

@@ -17,7 +17,7 @@ pub fn asset_response(path: &str) -> Response<std::io::Cursor<Vec<u8>>> {
   } else if path.ends_with(".html") {
     header = Header::from_bytes(&b"Content-Type"[..], &b"text/html"[..]).unwrap();
   } else {
-    header = Header::from_bytes(&b"Content-Type"[..], &b"appication/octet-stream"[..]).unwrap();
+    header = Header::from_bytes(&b"Content-Type"[..], &b"application/octet-stream"[..]).unwrap();
   }
 
   response.add_header(header);