mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-15 01:33:07 -07:00
- Fix torrent Labeling from torrent addition dialog
This commit is contained in:
parent
04e008afa0
commit
dc0ad73eca
1 changed files with 3 additions and 2 deletions
|
@ -930,11 +930,12 @@ QTorrentHandle Bittorrent::addTorrent(QString path, bool fromScanDir, QString fr
|
|||
h.prioritize_files(TorrentTempData::getFilesPriority(hash));
|
||||
h.set_sequential_download(TorrentTempData::isSequential(hash));
|
||||
}
|
||||
QString label = TorrentTempData::getLabel(hash);
|
||||
// Save persistent data for new torrent
|
||||
TorrentPersistentData::saveTorrentPersistentData(h);
|
||||
// Save Label
|
||||
if(TorrentTempData::hasTempData(hash)) {
|
||||
TorrentPersistentData::saveLabel(hash, TorrentTempData::getLabel(hash));
|
||||
if(!label.isEmpty()) {
|
||||
TorrentPersistentData::saveLabel(hash, label);
|
||||
}
|
||||
// Save save_path
|
||||
if(!defaultTempPath.isEmpty()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue