From e3b9659fb85f6d43d161a7c8c3d6b0a9c6a39008 Mon Sep 17 00:00:00 2001 From: Chocobo1 Date: Thu, 19 Sep 2019 16:05:12 +0800 Subject: [PATCH] Fix seeding failed after creating a new torrent Closes #11252. --- src/gui/torrentcreatordialog.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/torrentcreatordialog.cpp b/src/gui/torrentcreatordialog.cpp index 252301857..180987dee 100644 --- a/src/gui/torrentcreatordialog.cpp +++ b/src/gui/torrentcreatordialog.cpp @@ -210,6 +210,7 @@ void TorrentCreatorDialog::handleCreationSuccess(const QString &path, const QStr params.savePath = branchPath; params.skipChecking = true; params.ignoreShareLimits = m_ui->checkIgnoreShareLimits->isChecked(); + params.useAutoTMM = TriStateBool::False; // otherwise if it is on by default, it will overwrite `savePath` to the default save path BitTorrent::Session::instance()->addTorrent(t, params); }