added raw_json=1 to GET request for searches in order to get unescaped HTML from reddit json API

This commit is contained in:
Josh 2021-11-30 00:15:26 -06:00
parent 43551f70fd
commit 71964ef578
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ struct SearchTemplate {
// SERVICES
pub async fn find(req: Request<Body>) -> Result<Response<Body>, String> {
let nsfw_results = if setting(&req, "show_nsfw") == "on" { "&include_over_18=on" } else { "" };
let path = format!("{}.json?{}{}", req.uri().path(), req.uri().query().unwrap_or_default(), nsfw_results);
let path = format!("{}.json?raw_json=1&{}{}", req.uri().path(), req.uri().query().unwrap_or_default(), nsfw_results);
let query = param(&path, "q").unwrap_or_default();
if query.is_empty() {