Fix local folder URL

Signed-off-by: Dominique Fuchs <32204802+DominiqueFuchs@users.noreply.github.com>
This commit is contained in:
Dominique Fuchs 2020-01-11 19:56:56 +01:00
parent 86b915d42e
commit cc671dfad3

View file

@ -44,7 +44,8 @@ ActivityListModel *User::getActivityModel()
void User::openLocalFolder()
{
QDesktopServices::openUrl(this->getFolder()->path());
QString path = "file://" + this->getFolder()->path();
QDesktopServices::openUrl(path);
}
void User::login() const