mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-22 20:44:15 +00:00
- Fixed a crash when save dir was an empty string, now defaulting to ~/qBT-dir/
This commit is contained in:
parent
e8adc74051
commit
eac0254744
@ -504,6 +504,13 @@ float options_imp::getRatio() const{
|
|||||||
|
|
||||||
// Return Save Path
|
// Return Save Path
|
||||||
QString options_imp::getSavePath() const{
|
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();
|
return txt_savePath->text();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user