From 151f691609bb5d9cb9b5e04866f9dfcb2660a8eb Mon Sep 17 00:00:00 2001 From: Anirudh Rowjee Date: Sat, 2 Oct 2021 15:24:04 +0530 Subject: [PATCH] Fixes #1750 This commit is a fix to issue #1750. As a part of the changes to solve this issue, the following changes have been made - 1. Route registration for static assets has been modified 2. the `mut` keyword on the `scope` has been removed. --- meilisearch-http/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meilisearch-http/src/lib.rs b/meilisearch-http/src/lib.rs index 219e8b1c8..492e500b9 100644 --- a/meilisearch-http/src/lib.rs +++ b/meilisearch-http/src/lib.rs @@ -147,7 +147,7 @@ pub fn dashboard(config: &mut web::ServiceConfig, enable_frontend: bool) { if enable_frontend { let generated = generated::generate(); - let mut scope = web::scope("/"); + let scope = web::scope("/"); // Generate routes for mini-dashboard assets for (path, resource) in generated.into_iter() { let Resource { @@ -159,7 +159,7 @@ pub fn dashboard(config: &mut web::ServiceConfig, enable_frontend: bool) { web::get().to(move || HttpResponse::Ok().content_type(mime_type).body(data)), )); } else { - scope = scope.service(web::resource(path).route( + config.service(web::resource(path).route( web::get().to(move || HttpResponse::Ok().content_type(mime_type).body(data)), )); }