1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 11:08:02 -06:00

MacOSX: fix issue that prevented some local help files from opening in the browser (e.g Beginner's Tutorial).

This commit is contained in:
Mounir IDRASSI
2017-12-08 12:23:40 +01:00
parent 700b54aee9
commit f3d5ed570f

View File

@@ -1247,9 +1247,13 @@ namespace VeraCrypt
if (!localFile)
{
htmlPath = L"https://www.veracrypt.fr/en/";
url.Replace (L" ", L"%20");
url.Replace (L"'", L"%27");
}
else
{
htmlPath = L"file://" + htmlPath;
}
url.Replace (L" ", L"%20");
url.Replace (L"'", L"%27");
url = htmlPath + url;
}