mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-20 21:33:27 -07:00
Don't touch qbtsession here.
This commit is contained in:
parent
1a965cc0bd
commit
60c3244faa
1 changed files with 2 additions and 1 deletions
|
@ -402,7 +402,8 @@ void QBtSession::configureSession() {
|
|||
sessionSettings.announce_to_all_trackers = announce_to_all;
|
||||
sessionSettings.announce_to_all_tiers = announce_to_all;
|
||||
sessionSettings.auto_scrape_min_interval = 900; // 15 minutes
|
||||
sessionSettings.cache_size = pref.diskCacheSize() ? pref.diskCacheSize() * 64 : -1;
|
||||
int cache_size = pref.diskCacheSize();
|
||||
sessionSettings.cache_size = cache_size ? pref.diskCacheSize() * 64 : -1;
|
||||
qDebug() << "Using a disk cache size of" << pref.diskCacheSize() << "MiB";
|
||||
// Disable OS cache to avoid memory problems (uTorrent behavior)
|
||||
#ifdef Q_WS_WIN
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue