This commit is contained in:
amnore 2025-03-30 23:52:54 +02:00 committed by GitHub
commit eacca90720
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,6 +30,7 @@
namespace namespace
{ {
constexpr auto DEFAULT_ALIAS = "default"; constexpr auto DEFAULT_ALIAS = "default";
constexpr auto SESSION_ALIAS = "session";
} }
namespace FdoSecrets namespace FdoSecrets
@ -173,6 +174,7 @@ namespace FdoSecrets
if (coll) { if (coll) {
// adding alias will automatically remove the association with previous collection. // adding alias will automatically remove the association with previous collection.
coll->addAlias(DEFAULT_ALIAS).okOrDie(); coll->addAlias(DEFAULT_ALIAS).okOrDie();
coll->addAlias(SESSION_ALIAS).okOrDie();
} }
m_insideEnsureDefaultAlias = false; m_insideEnsureDefaultAlias = false;