1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 14:57:52 +00:00

Disable tracker exchange by default

This commit is contained in:
Christophe Dumez 2011-09-21 18:48:10 +03:00
parent c882bc8a1d
commit 1585b307bc

View File

@ -955,11 +955,11 @@ public:
}
bool trackerExchangeEnabled() const {
return value(QString::fromUtf8("Preferences/Advanced/TrackerExchange"), true).toBool();
return value(QString::fromUtf8("Preferences/Advanced/LtTrackerExchange"), false).toBool();
}
void setTrackerExchangeEnabled(bool enable) {
setValue(QString::fromUtf8("Preferences/Advanced/TrackerExchange"), enable);
setValue(QString::fromUtf8("Preferences/Advanced/LtTrackerExchange"), enable);
}
bool recheckTorrentsOnCompletion() const {