mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-24 02:06:07 +03:00
Log "RSS Feed successfully downloaded" event
This commit is contained in:
parent
7e0d64294c
commit
9342fb15b3
1 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,6 @@
|
|||
#include <algorithm>
|
||||
#include <vector>
|
||||
|
||||
#include <QDebug>
|
||||
#include <QDir>
|
||||
#include <QJsonArray>
|
||||
#include <QJsonDocument>
|
||||
|
@ -195,7 +194,8 @@ bool Feed::hasError() const
|
|||
void Feed::handleDownloadFinished(const Net::DownloadResult &result)
|
||||
{
|
||||
if (result.status == Net::DownloadStatus::Success) {
|
||||
qDebug() << "Successfully downloaded RSS feed at" << result.url;
|
||||
LogMsg(tr("RSS feed at '%1' is successfully downloaded. Starting to parse it.")
|
||||
.arg(result.url));
|
||||
// Parse the download RSS
|
||||
m_parser->parse(result.data);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue