1
1
Fork 0
mirror of https://github.com/boxgaming/qbjs.git synced 2024-05-12 08:00:12 +00:00

updated to return correct content-type for svg images

This commit is contained in:
boxgaming 2023-04-18 14:37:27 -05:00
parent f8a24b1e57
commit c8d6a2ede9

View file

@ -141,6 +141,9 @@ Sub http_do_get (c)
Close #fh
http_send_status c, 200, "OK"
http_send_header c, "Content-Length", LTrim$(Str$(Len(filedata)))
If InStr(filepath, ".svg") Then
http_send_header c, "Content-Type", "image/svg+xml"
End If
http_send_header c, "Access-Control-Allow-Origin", "true"
http_send_header c, "Connection", "close"
http_end_headers c
@ -211,7 +214,7 @@ Function get_requested_filesystem_path$ (c)
'Print "--> " + Left$(raw_path, path_len)
get_requested_filesystem_path = _STARTDIR$ + cannonicalise_path(percent_decode(Left$(raw_path, path_len)))
get_requested_filesystem_path = _StartDir$ + cannonicalise_path(percent_decode(Left$(raw_path, path_len)))
End Function
Function percent_decode$ (raw_string As String)