Browse Source

Fix append .!qB extension when it disabled.

adaptive-webui-19844
Vladimir Golovnev (Glassez) 10 years ago
parent
commit
a55a27508a
  1. 6
      src/core/bittorrent/torrenthandle.cpp

6
src/core/bittorrent/torrenthandle.cpp

@ -206,7 +206,8 @@ TorrentHandle::TorrentHandle(Session *session, const libtorrent::torrent_handle @@ -206,7 +206,8 @@ TorrentHandle::TorrentHandle(Session *session, const libtorrent::torrent_handle
if (!data.resumed) {
if (hasMetadata()) {
setFirstLastPiecePriority(data.sequential);
appendExtensionsToIncompleteFiles();
if (m_session->isAppendExtensionEnabled())
appendExtensionsToIncompleteFiles();
}
}
}
@ -1550,7 +1551,8 @@ void TorrentHandle::handleMetadataReceivedAlert(libt::metadata_received_alert *p @@ -1550,7 +1551,8 @@ void TorrentHandle::handleMetadataReceivedAlert(libt::metadata_received_alert *p
Q_UNUSED(p);
qDebug("Metadata received for torrent %s.", qPrintable(name()));
updateStatus();
appendExtensionsToIncompleteFiles();
if (m_session->isAppendExtensionEnabled())
appendExtensionsToIncompleteFiles();
m_session->handleTorrentMetadataReceived(this);
if (isPaused()) {

Loading…
Cancel
Save