mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-08 06:00:59 -07:00
Change URL seed error message
Current URL seed error message assumes that only possible error is DNS lookup failure, which is not true. So replace it with a more generic message. Real reason is provided by the 'Error:' part. PR #22119.
This commit is contained in:
parent
f9f4b60b83
commit
68ecb13d14
1 changed files with 1 additions and 1 deletions
|
@ -6073,7 +6073,7 @@ void SessionImpl::handleUrlSeedAlert(const lt::url_seed_alert *alert)
|
|||
|
||||
if (alert->error)
|
||||
{
|
||||
LogMsg(tr("URL seed DNS lookup failed. Torrent: \"%1\". URL: \"%2\". Error: \"%3\"")
|
||||
LogMsg(tr("URL seed connection failed. Torrent: \"%1\". URL: \"%2\". Error: \"%3\"")
|
||||
.arg(torrent->name(), QString::fromUtf8(alert->server_url()), QString::fromStdString(alert->message()))
|
||||
, Log::WARNING);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue