Merge pull request 'Handle /favicon.ico' (#12) from kensanata/snac2:favicon into master

Reviewed-on: https://codeberg.org/grunfink/snac2/pulls/12
This commit is contained in:
grunfink 2022-12-05 08:04:20 +00:00
commit 5041014a39

View file

@ -76,7 +76,7 @@ int server_get_handler(d_char *req, char *q_path,
} }
} }
else else
if (strcmp(q_path, "/susie.png") == 0) { if (strcmp(q_path, "/susie.png") == 0 || strcmp(q_path, "/favicon.ico") == 0 ) {
status = 200; status = 200;
*body = xs_base64_dec(susie, b_size); *body = xs_base64_dec(susie, b_size);
*ctype = "image/png"; *ctype = "image/png";