From f1141710831c0ce7c793bbb3e49669a02f44dff3 Mon Sep 17 00:00:00 2001 From: Mat Sutcliffe Date: Wed, 12 Aug 2020 20:10:34 +0100 Subject: [PATCH] Issue #17 Fixed bug in database reader --- src/blackcore/db/databasereader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blackcore/db/databasereader.cpp b/src/blackcore/db/databasereader.cpp index 08b3b082c..7cdc21dd7 100644 --- a/src/blackcore/db/databasereader.cpp +++ b/src/blackcore/db/databasereader.cpp @@ -668,7 +668,7 @@ namespace BlackCore else { msgs.push_back(CStatusMessage(this).info(u"File '%1' is not newer than cache (%2)") << fileInfo.absoluteFilePath() << cacheDateTime.toUTC().toString()); - return true; + return false; } }