Merge pull request #3474 from bparker06/7z

7z extension is .7z not .zip
This commit is contained in:
Alcaro 2016-08-30 22:32:40 +02:00 committed by GitHub
commit 14cb57ce3b

View File

@ -199,7 +199,7 @@ bool path_is_compressed_file(const char* path)
#endif
#ifdef HAVE_7ZIP
if (strcasestr(ext, "zip"))
if (strcasestr(ext, "7z"))
return true;
#endif