mirror of
https://github.com/mCaptcha/mCaptcha.git
synced 2026-02-13 11:05:40 +00:00
chore: update actix-* deps
This commit is contained in:
@@ -54,7 +54,7 @@ impl<'a> Default for AdvanceIndexPage<'a> {
|
||||
pub async fn advance() -> impl Responder {
|
||||
HttpResponse::Ok()
|
||||
.content_type("text/html; charset=utf-8")
|
||||
.body(&*ADVANCE_INDEX)
|
||||
.body(&**ADVANCE_INDEX)
|
||||
}
|
||||
|
||||
#[derive(TemplateOnce, Clone)]
|
||||
@@ -86,5 +86,5 @@ impl<'a> Default for EasyIndexPage<'a> {
|
||||
pub async fn easy() -> impl Responder {
|
||||
HttpResponse::Ok()
|
||||
.content_type("text/html; charset=utf-8")
|
||||
.body(&*EASY_INDEX)
|
||||
.body(&**EASY_INDEX)
|
||||
}
|
||||
|
||||
@@ -34,5 +34,5 @@ pub async fn delete_sitekey(path: web::Path<String>) -> impl Responder {
|
||||
.unwrap();
|
||||
HttpResponse::Ok()
|
||||
.content_type("text/html; charset=utf-8")
|
||||
.body(&page)
|
||||
.body(page)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user