mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
- Made peer addition more robust by catching exceptions
This commit is contained in:
parent
94f3323270
commit
490ef19e64
1 changed files with 6 additions and 2 deletions
|
@ -121,8 +121,12 @@ void PeerListWidget::showPeerListMenu(QPoint) {
|
|||
if(act == addPeerAct) {
|
||||
boost::asio::ip::tcp::endpoint ep = PeerAdditionDlg::askForPeerEndpoint();
|
||||
if(ep != boost::asio::ip::tcp::endpoint()) {
|
||||
try {
|
||||
h.connect_peer(ep);
|
||||
QMessageBox::information(0, tr("Peer addition"), tr("The peer was added to this torrent."));
|
||||
} catch(std::exception) {
|
||||
QMessageBox::critical(0, tr("Peer addition"), tr("The peer could not be added to this torrent."));
|
||||
}
|
||||
} else {
|
||||
qDebug("No peer was added");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue