mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-19 15:07:22 -06:00
Safer variable checking
This commit is contained in:
@@ -749,7 +749,7 @@ void PropertiesWidget::renameSelectedFile() {
|
|||||||
}else{
|
}else{
|
||||||
dir = QFileDialog::getExistingDirectory(this, tr("Choose save path"), QDir::homePath());
|
dir = QFileDialog::getExistingDirectory(this, tr("Choose save path"), QDir::homePath());
|
||||||
}
|
}
|
||||||
if(!dir.isNull()){
|
if(!dir.isEmpty()){
|
||||||
// Check if savePath exists
|
// Check if savePath exists
|
||||||
QDir savePath(misc::expandPath(dir));
|
QDir savePath(misc::expandPath(dir));
|
||||||
if(!savePath.exists()){
|
if(!savePath.exists()){
|
||||||
|
|||||||
Reference in New Issue
Block a user