From b229d9a68d6824cf6f0e9f2a8e3db7917f8aa631 Mon Sep 17 00:00:00 2001 From: Albert S Date: Mon, 25 Apr 2022 22:22:40 +0200 Subject: [PATCH] cli: CommandUpdate: Add missing clear of files vector --- cli/commandupdate.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/cli/commandupdate.cpp b/cli/commandupdate.cpp index 354c426..f242eb5 100644 --- a/cli/commandupdate.cpp +++ b/cli/commandupdate.cpp @@ -108,6 +108,7 @@ int CommandUpdate::handle(QStringList arguments) } } offset += limit; + files.clear(); processedRows = this->dbService->getFiles(files, pattern, offset, limit); }