Commit 8a2fef34 authored by Dan Pascu's avatar Dan Pascu

Fixed how the local directory URL is computed

parent b9c0eb6d
......@@ -372,7 +372,7 @@ class MainWindow(base_class, ui_class):
def _AH_LogsActionTriggered(self, checked):
directory = ApplicationData.get('logs')
makedirs(directory)
QDesktopServices.openUrl(QUrl('file:///'+directory))
QDesktopServices.openUrl(QUrl.fromLocalFile(directory))
def _AH_VoicemailActionTriggered(self, action, checked):
account = action.data()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment