mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-28 03:25:00 +03:00
Fix local folder URL
Signed-off-by: Dominique Fuchs <32204802+DominiqueFuchs@users.noreply.github.com>
This commit is contained in:
parent
86b915d42e
commit
cc671dfad3
1 changed files with 2 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue