Explorar el Código

[Minor] Lua_magic: Improve html detection heuristic

tags/2.7
Vsevolod Stakhov hace 3 años
padre
commit
63869b7d7b
Se han modificado 1 ficheros con 7 adiciones y 0 borrados
  1. 7
    0
      lualib/lua_magic/heuristics.lua

+ 7
- 0
lualib/lua_magic/heuristics.lua Ver fichero

@@ -435,10 +435,17 @@ exports.text_part_heuristic = function(part, log_obj, _)
end
end

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

-- Extension stuff
local fname = part:get_filename()
if fname and fname:match('html?$') then
return 'html',21
end

return 'txt',40
end
end

Cargando…
Cancelar
Guardar