Parcourir la 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 il y a 3 ans
Parent
révision
d8c76f9fcb
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2
    2
      lualib/lua_magic/heuristics.lua

+ 2
- 2
lualib/lua_magic/heuristics.lua Voir le fichier

@@ -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

Chargement…
Annuler
Enregistrer