ソースを参照

[Minor] Lua_magic: Improve html detection heuristic

tags/2.7
Vsevolod Stakhov 3年前
コミット
63869b7d7b
1個のファイルの変更7行の追加0行の削除
  1. 7
    0
      lualib/lua_magic/heuristics.lua

+ 7
- 0
lualib/lua_magic/heuristics.lua ファイルの表示

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

読み込み中…
キャンセル
保存