diff --git a/CHANGELOG.md b/CHANGELOG.md index 135380b6..0443cb37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed - fixed and improved HideDiskSerialNumber option causes applications to crash [#4185](https://github.com/sandboxie-plus/Sandboxie/issues/4185) +- fixed encrypted proxy password was inproeprly formated [#4197](https://github.com/sandboxie-plus/Sandboxie/issues/4197) diff --git a/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp b/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp index c6ac57b2..07564ae8 100644 --- a/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp +++ b/SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp @@ -1055,7 +1055,7 @@ void COptionsWindow::SaveNetProxy() if(res.IsError()) Tags.append("Password=" + Pass); else - Tags.append("EncryptedPW=" + res.GetValue().toBase64(QByteArray::OmitTrailingEquals)); + Tags.append("EncryptedPW=" + res.GetValue().toBase64(QByteArray::KeepTrailingEquals)); } Tags.append("Bypass=" + Bypass);