diff options
author | 2021-01-08 04:10:10 +1100 | |
---|---|---|
committer | 2021-01-08 04:10:10 +1100 | |
commit | 4fd3a17070096d424100ef97ae1730f4e3e2f3b2 (patch) | |
tree | 731477c7cdec39ac55fdc4db47e6e44919a6bb80 /src/lib/util/zippath.cpp | |
parent | ded9173f789302e68c0f08de591d3f55ff9008bc (diff) |
util/zippath.cpp: Fix suffix for zip archives.
Diffstat (limited to 'src/lib/util/zippath.cpp')
-rw-r--r-- | src/lib/util/zippath.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/util/zippath.cpp b/src/lib/util/zippath.cpp index f85a81ed079..4481e84da71 100644 --- a/src/lib/util/zippath.cpp +++ b/src/lib/util/zippath.cpp @@ -78,7 +78,7 @@ bool is_7z_file(std::string const &path) bool is_zip_file(std::string const &path) { - return core_filename_ends_with(path, ".7zip"); + return core_filename_ends_with(path, ".zip"); } |