aboutsummaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-11-07 20:47:37 +0100
committerdefault <nobody@localhost>2024-11-07 20:47:37 +0100
commita6bf1ee0d0e238cb13d916c019bc231986d44401 (patch)
tree5b37f54ed7818854febae4fdf656e1a4a2b16076 /html.c
parente4e58d22224d37b9db760eda5bb25a76c3eea5b2 (diff)
Use the raw_path for proxying (as some media may include ? arguments).
Diffstat (limited to 'html.c')
-rw-r--r--html.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/html.c b/html.c
index c87883d..5d379e8 100644
--- a/html.c
+++ b/html.c
@@ -3216,7 +3216,13 @@ int html_get_handler(const xs_dict *req, const char *q_path,
status = HTTP_STATUS_UNAUTHORIZED;
}
else {
- xs *url = xs_replace(p_path, "proxy/", "https:/" "/");
+ /* pick the raw path (including optional ? arguments) */
+ const char *raw_path = xs_dict_get(req, "raw_path");
+
+ /* skip to where the proxy/ string starts */
+ raw_path += xs_str_in(raw_path, "proxy/");
+
+ xs *url = xs_replace(raw_path, "proxy/", "https:/" "/");
xs *hdrs = xs_dict_new();
hdrs = xs_dict_append(hdrs, "user-agent", USER_AGENT);