This commit is contained in:
DavidXanatos 2024-08-30 12:03:01 +02:00
parent 633ce87c11
commit fa04eab6f8
2 changed files with 2 additions and 1 deletions

View File

@ -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)

View File

@ -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);