fix the content-type

This commit is contained in:
Tamo 2021-06-29 13:16:56 +02:00
parent 1dc99ea451
commit fe7640555d
No known key found for this signature in database
GPG Key ID: 20CD8020AFA88D69
1 changed files with 3 additions and 3 deletions

View File

@ -37,10 +37,10 @@ fn guard_json(head: &actix_web::dev::RequestHead) -> bool {
content_type
.to_str()
.map(|v| v.contains("application/json"))
// if no content-type is specified we still accept the data as json!
.unwrap_or(true)
.unwrap_or(false)
} else {
false
// if no content-type is specified we still accept the data as json!
true
}
}