From fee442dbf292856e6a8f6541cbe82e0daf721ac5 Mon Sep 17 00:00:00 2001 From: grunfink Date: Sat, 23 Aug 2025 20:19:14 +0200 Subject: Ensure the tag is a string in server_get_handler(). --- httpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httpd.c b/httpd.c index 71e04bf..9707f9c 100644 --- a/httpd.c +++ b/httpd.c @@ -226,7 +226,7 @@ int server_get_handler(xs_dict *req, const char *q_path, const xs_dict *q_vars = xs_dict_get(req, "q_vars"); const char *t = NULL; - if (xs_type(q_vars) == XSTYPE_DICT && (t = xs_dict_get(q_vars, "t"))) { + if (xs_type(q_vars) == XSTYPE_DICT && xs_is_string(t = xs_dict_get(q_vars, "t"))) { /** search by tag **/ int skip = 0; int show = xs_number_get(xs_dict_get_def(srv_config, "def_timeline_entries", -- cgit v1.2.3