瀏覽代碼

Load correct URL on windows

We need more slashes on windows
Tobias Hieta 8 年之前
父節點
當前提交
f2a1fd3ea3
共有 1 個文件被更改,包括 6 次插入1 次删除
  1. 6 1
      src/settings/SettingsComponent.cpp

+ 6 - 1
src/settings/SettingsComponent.cpp

@@ -680,7 +680,12 @@ QString SettingsComponent::getWebClientUrl()
   }
 
   if (url == "bundled")
-    return "file://" + Paths::webClientPath();
+  {
+    auto path = Paths::webClientPath();
+    if (path.startsWith("/"))
+      return "file://" + path;
+    return "file:///" + path;
+  }
 
   return url;
 }