1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

[data] Added image/jxl as well. Refs #261

This commit is contained in:
Witold Filipczyk 2023-08-22 08:25:07 +02:00
parent 365f1075b8
commit 43f970d1f4

View File

@ -1367,6 +1367,7 @@ get_extension_from_uri(struct uri *uri)
ADD_EXTENSION_FROM_TYPE(uri->data, "text/plain", "txt")
ADD_EXTENSION_FROM_TYPE(uri->data, "text/html", "html")
ADD_EXTENSION_FROM_TYPE(uri->data, "image/svg+xml", "svg")
ADD_EXTENSION_FROM_TYPE(uri->data, "image/jxl", "jxl")
return stracpy("");
}