mirror of
https://github.com/OpenRCT2/OpenRCT2.git
synced 2025-01-22 10:21:57 -05:00
parent
3d85ec4ea1
commit
10f6059f09
2 changed files with 2 additions and 1 deletions
|
@ -19,6 +19,7 @@
|
|||
- Fix: [#7765] Crash when opening ride list window on Windows Vista.
|
||||
- Fix: [#7773] Once research has been completed, player is still charged for research.
|
||||
- Fix: [#7786] Crash when importing a track design.
|
||||
- Fix: [#7793] Duplicate private keys generated.
|
||||
|
||||
0.2.0 (2018-06-10)
|
||||
------------------------------------------------------------------------
|
||||
|
|
|
@ -129,7 +129,7 @@ bool NetworkKey::SavePublic(IStream * stream)
|
|||
{
|
||||
throw std::runtime_error("No key loaded");
|
||||
}
|
||||
auto pem = _key->GetPrivate();
|
||||
auto pem = _key->GetPublic();
|
||||
stream->Write(pem.data(), pem.size());
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue