1
0
mirror of https://github.com/qbittorrent/qBittorrent.git synced 2025-03-12 04:35:47 -07:00

WebAPI: Fix incorrect key in torrent creator

PR .
This commit is contained in:
Bartu Özen 2024-11-21 13:59:20 +03:00 committed by GitHub
parent 0eba285ff1
commit 6ce2869108
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -129,7 +129,7 @@ void TorrentCreatorController::addTaskAction()
.sourcePath = Path(params()[KEY_SOURCE_PATH]),
.torrentFilePath = Path(params()[KEY_TORRENT_FILE_PATH]),
.comment = params()[KEY_COMMENT],
.source = params()[KEY_COMMENT],
.source = params()[KEY_SOURCE],
.trackers = params()[KEY_TRACKERS].split(u'|'),
.urlSeeds = params()[KEY_URL_SEEDS].split(u'|')
};