Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add connection_speed to advanced settings #14976

Merged
merged 3 commits into from
May 23, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Remove unused parameter
  • Loading branch information
Chocobo1 committed May 21, 2021
commit c64e433a69237e02baab17d77e1fc820b3047536
4 changes: 2 additions & 2 deletions src/base/bittorrent/dbresumedatastorage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ void BitTorrent::DBResumeDataStorage::createDB() const
if (!db.commit())
throw RuntimeError(db.lastError().text());
}
catch (const RuntimeError &err)
catch (const RuntimeError &)
{
db.rollback();
throw;
Expand Down Expand Up @@ -563,7 +563,7 @@ void BitTorrent::DBResumeDataStorage::Worker::storeQueue(const QVector<TorrentID
if (!db.commit())
throw RuntimeError(db.lastError().text());
}
catch (const RuntimeError &err)
catch (const RuntimeError &)
{
db.rollback();
throw;
Expand Down