mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 05:15:04 +00:00
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:
commit
5041014a39
1 changed files with 1 additions and 1 deletions
2
httpd.c
2
httpd.c
|
@ -76,7 +76,7 @@ int server_get_handler(d_char *req, char *q_path,
|
|||
}
|
||||
}
|
||||
else
|
||||
if (strcmp(q_path, "/susie.png") == 0) {
|
||||
if (strcmp(q_path, "/susie.png") == 0 || strcmp(q_path, "/favicon.ico") == 0 ) {
|
||||
status = 200;
|
||||
*body = xs_base64_dec(susie, b_size);
|
||||
*ctype = "image/png";
|
||||
|
|
Loading…
Reference in a new issue