7z extension is .7z not .zip

This commit is contained in:
Brad Parker 2016-08-30 16:31:53 -04:00
parent 8da400c55e
commit ae36b0f73d

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