浏览代码

[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 年前
父节点
当前提交
d8c76f9fcb
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2
    2
      lualib/lua_magic/heuristics.lua

+ 2
- 2
lualib/lua_magic/heuristics.lua 查看文件

@@ -434,7 +434,7 @@ exports.text_part_heuristic = function(part, log_obj, _)
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
end

@@ -458,4 +458,4 @@ exports.pdf_format_heuristic = function(input, log_obj, pos, part)
return 'pdf',weight
end

return exports
return exports

正在加载...
取消
保存