mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 06:28:03 -06:00
- Fixed a crash when save dir was an empty string, now defaulting to ~/qBT-dir/
This commit is contained in:
@@ -504,6 +504,13 @@ float options_imp::getRatio() const{
|
||||
|
||||
// Return Save Path
|
||||
QString options_imp::getSavePath() const{
|
||||
QString home = QDir::homePath();
|
||||
if(home[home.length()-1] != QDir::separator()){
|
||||
home += QDir::separator();
|
||||
}
|
||||
if(txt_savePath->text().trimmed().isEmpty()){
|
||||
txt_savePath->setText(home+"qBT_dir");
|
||||
}
|
||||
return txt_savePath->text();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user