fix(web/converse): Update to use mime_guess::from_path
... instead of its deprecated predecessor. Change-Id: I8af286c6b1ee7c25c153f1209d094ae4f5eb53cc Reviewed-on: https://cl.tvl.fyi/c/depot/+/2860 Tested-by: BuildkiteCI Reviewed-by: tazjin <mail@tazj.in>
This commit is contained in:
parent
3b0b21f8d1
commit
a87533695f
2 changed files with 1 additions and 3 deletions
|
@ -32,7 +32,6 @@ use actix_web;
|
|||
use crate::db::*;
|
||||
use crate::errors::ConverseError;
|
||||
use futures::Future;
|
||||
use mime_guess::guess_mime_type;
|
||||
use crate::models::*;
|
||||
use crate::oidc::*;
|
||||
use crate::render::*;
|
||||
|
@ -316,7 +315,7 @@ pub trait EmbeddedFile {
|
|||
impl EmbeddedFile for App<AppState> {
|
||||
fn static_file(self, path: &'static str, content: &'static [u8]) -> Self {
|
||||
self.route(path, Method::GET, move |_: HttpRequest<_>| {
|
||||
let mime = format!("{}", guess_mime_type(path));
|
||||
let mime = format!("{}", mime_guess::from_path(path).first_or_octet_stream());
|
||||
HttpResponse::Ok()
|
||||
.content_type(mime.as_str())
|
||||
.body(content)
|
||||
|
|
|
@ -16,7 +16,6 @@
|
|||
// along with this program. If not, see
|
||||
// <https://www.gnu.org/licenses/>.
|
||||
|
||||
#[macro_use]
|
||||
extern crate askama;
|
||||
|
||||
#[macro_use]
|
||||
|
|
Loading…
Reference in a new issue