1.14.7
This commit is contained in:
parent
633ce87c11
commit
fa04eab6f8
|
@ -16,6 +16,7 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
- fixed and improved HideDiskSerialNumber option causes applications to crash [#4185](https://github.com/sandboxie-plus/Sandboxie/issues/4185)
|
- 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)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1055,7 +1055,7 @@ void COptionsWindow::SaveNetProxy()
|
||||||
if(res.IsError())
|
if(res.IsError())
|
||||||
Tags.append("Password=" + Pass);
|
Tags.append("Password=" + Pass);
|
||||||
else
|
else
|
||||||
Tags.append("EncryptedPW=" + res.GetValue().toBase64(QByteArray::OmitTrailingEquals));
|
Tags.append("EncryptedPW=" + res.GetValue().toBase64(QByteArray::KeepTrailingEquals));
|
||||||
}
|
}
|
||||||
Tags.append("Bypass=" + Bypass);
|
Tags.append("Bypass=" + Bypass);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue