Skip to content

Commit 347a4e1

Browse files
authored
Fixes regression of #160
1 parent a794cc9 commit 347a4e1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

VERSION.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION="3.18-dev"
1+
VERSION="3.17.3"

src/skyscraper.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ void Skyscraper::run() {
152152

153153
cache = QSharedPointer<Cache>(new Cache(config.cacheFolder));
154154
if (cacheScrapeMode || cache->createFolders(config.scraper)) {
155-
if (cacheScrapeMode && !cache->read()) {
155+
if (!cache->read() && cacheScrapeMode) {
156156
printf("No resources for this platform found in the resource "
157157
"cache ('%s'). Please verify the path of the cache or "
158158
"specify a scraping module with '-s' to gather some "

0 commit comments

Comments
 (0)