CommandDelete: Bugfix: Deleted existing instead of non-existing files

Этот коммит содержится в:
Albert S. 2019-04-22 21:08:31 +02:00
родитель 95a650dd30
Коммит 6ac7c199fb

Просмотреть файл

@ -20,7 +20,7 @@ int CommandDelete::removeNonExistent(bool verbose, bool dryRun, QString pattern)
if(!dryRun)
{
QFileInfo fileInfo(file.absPath);
if(fileInfo.exists())
if(!fileInfo.exists())
{
if(this->dbService->deleteFile(file.absPath))
{