diff options
author | Vsevolod Stakhov <vsevolod@rspamd.com> | 2023-06-19 22:37:29 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-19 22:37:29 +0100 |
commit | e1302090d55ba9323c8817e6d5198b652ceef133 (patch) | |
tree | d700565546735cfe97f327e948067ed6b5736163 | |
parent | add8df37e786e5d4eeb19467bc2f06aa23c61791 (diff) | |
parent | 2b7e6c87eb425b99ba3d1217c52710afe406ef2c (diff) | |
download | rspamd-e1302090d55ba9323c8817e6d5198b652ceef133.tar.gz rspamd-e1302090d55ba9323c8817e6d5198b652ceef133.zip |
Merge pull request #4517 from JasonStephenson/bugfix/7z-cte-fix
Use the correct mime format for 7z
-rw-r--r-- | lualib/lua_magic/types.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lualib/lua_magic/types.lua b/lualib/lua_magic/types.lua index 859c578ca..3dce2e1f8 100644 --- a/lualib/lua_magic/types.lua +++ b/lualib/lua_magic/types.lua @@ -251,7 +251,7 @@ local types = { type = 'archive', }, ['7z'] = { - ct = 'x-7z-compressed', + ct = 'application/x-7z-compressed', type = 'archive', }, gz = { |