diff --git a/src/services/abstract/feed.cpp b/src/services/abstract/feed.cpp index c30ad339f..1746fe183 100755 --- a/src/services/abstract/feed.cpp +++ b/src/services/abstract/feed.cpp @@ -167,7 +167,7 @@ void Feed::run() { << customId() << " in thread: \'" << QThread::currentThreadId() << "\'."; - bool error_during_obtaining; + bool error_during_obtaining = false; QList msgs = obtainNewMessages(&error_during_obtaining); qDebug().nospace() << "Downloaded " << msgs.size() << " messages for feed " @@ -215,7 +215,7 @@ int Feed::updateMessages(const QList& messages, bool error_during_obtai qDebug("Updating messages in DB. Main thread: '%s'.", qPrintable(is_main_thread ? "true" : "false")); - if (!error_during_obtaining) { + if (!messages.isEmpty()) { bool anything_updated = false; bool ok = true; @@ -241,8 +241,9 @@ int Feed::updateMessages(const QList& messages, bool error_during_obtai } } } - else { - qCritical("I skip saving of messages into DB, as we have error during their downloading indicated."); + + if (error_during_obtaining) { + qCritical("There is indication that there was error during messages obtaining."); } items_to_update.append(this); diff --git a/src/services/inoreader/inoreaderfeed.cpp b/src/services/inoreader/inoreaderfeed.cpp index d00247679..3ba05fa9a 100755 --- a/src/services/inoreader/inoreaderfeed.cpp +++ b/src/services/inoreader/inoreaderfeed.cpp @@ -16,7 +16,7 @@ InoreaderServiceRoot* InoreaderFeed::serviceRoot() const { } QList InoreaderFeed::obtainNewMessages(bool* error_during_obtaining) { - Feed::Status error; + Feed::Status error = Feed::Status::Normal; QList messages = serviceRoot()->network()->messages(customId(), error); setStatus(error); diff --git a/src/services/inoreader/network/inoreadernetworkfactory.cpp b/src/services/inoreader/network/inoreadernetworkfactory.cpp index 61b1e09eb..8612e44bd 100755 --- a/src/services/inoreader/network/inoreadernetworkfactory.cpp +++ b/src/services/inoreader/network/inoreadernetworkfactory.cpp @@ -113,6 +113,7 @@ QList InoreaderNetworkFactory::messages(const QString& stream_id, Feed: QString bearer = m_oauth2->bearer().toLocal8Bit(); if (bearer.isEmpty()) { + qCritical("Cannot download messages for '%s', bearer is empty.", qPrintable(stream_id)); error = Feed::Status::AuthError; return QList(); } @@ -126,6 +127,7 @@ QList InoreaderNetworkFactory::messages(const QString& stream_id, Feed: loop.exec(); if (downloader.lastOutputError() != QNetworkReply::NetworkError::NoError) { + qCritical("Cannot download messages for '%s', network error.", qPrintable(stream_id)); error = Feed::Status::NetworkError; return QList(); }