From 348bf0b7b0438451f41eb6e84aa3f1661f438f4a Mon Sep 17 00:00:00 2001 From: art1pirat Date: Sun, 20 Oct 2019 22:51:35 +0200 Subject: [PATCH] - bugfix, make file list uniq --- src/lib/manifest.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/lib/manifest.cpp b/src/lib/manifest.cpp index 7a5cb08..d6871c4 100644 --- a/src/lib/manifest.cpp +++ b/src/lib/manifest.cpp @@ -131,6 +131,8 @@ list Manifest::get_checksummed_files() { files.push_back( file ); } } + files.sort(); + files.unique(); return files; }