Browse Source

[Minor] Improve lua_magic HTML content type check

Types which are used for html (xhtml) attachments:
text/html
application/html
application/xhtml+xml

Type which cannot be found in the wild:
text/htm
tags/2.6
Anton Yuzhaninov 3 years ago
parent
commit
d8c76f9fcb
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      lualib/lua_magic/heuristics.lua

+ 2
- 2
lualib/lua_magic/heuristics.lua View File

end end
end end


if mtype == 'text' and (msubtype == 'html' or msubtype == 'htm') then
if (mtype == 'text' or mtype == 'application') and (msubtype == 'html' or msubtype == 'xhtml+xml') then
return 'html',21 return 'html',21
end end


return 'pdf',weight return 'pdf',weight
end end


return exports
return exports

Loading…
Cancel
Save