Skip to content

Fix crash on backup actions

Ismael Asensio requested to merge work/iasensio/fix-crash-backup into master

We need to store the string provided by Global::savesFolder() before passing it to QFileDialog::getExistingDirectoryUrl(),

The actual QString is stored as a pointer, so derreferencing it there makes it crash. With the QUrl() constructor it would be enough, but better safe than sorry.

Merge request reports