Skip to content

Commit

Permalink
1.14.7
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidXanatos committed Aug 30, 2024
1 parent 633ce87 commit fa04eab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)



Expand Down
2 changes: 1 addition & 1 deletion SandboxiePlus/SandMan/Windows/OptionsNetwork.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit fa04eab

Please sign in to comment.