mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-26 17:58:19 +03:00
Fix displayed tracker messages
Before this change, we were displaying debug messages constructed by libtorrent, now we show messages returned by trackers. Closes #8739.
This commit is contained in:
parent
a37dfcf961
commit
b396ca771d
1 changed files with 2 additions and 2 deletions
|
@ -1509,7 +1509,7 @@ void TorrentHandle::handleTrackerWarningAlert(const libtorrent::tracker_warning_
|
||||||
const QString message = QString::fromStdString(p->msg);
|
const QString message = QString::fromStdString(p->msg);
|
||||||
#else
|
#else
|
||||||
const QString trackerUrl = p->tracker_url();
|
const QString trackerUrl = p->tracker_url();
|
||||||
const QString message = QString::fromStdString(p->message());
|
const QString message = p->warning_message();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// Connection was successful now but there is a warning message
|
// Connection was successful now but there is a warning message
|
||||||
|
@ -1525,7 +1525,7 @@ void TorrentHandle::handleTrackerErrorAlert(const libtorrent::tracker_error_aler
|
||||||
const QString message = QString::fromStdString(p->msg);
|
const QString message = QString::fromStdString(p->msg);
|
||||||
#else
|
#else
|
||||||
const QString trackerUrl = p->tracker_url();
|
const QString trackerUrl = p->tracker_url();
|
||||||
const QString message = QString::fromStdString(p->message());
|
const QString message = p->error_message();
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
m_trackerInfos[trackerUrl].lastMessage = message;
|
m_trackerInfos[trackerUrl].lastMessage = message;
|
||||||
|
|
Loading…
Reference in a new issue