Skip to content

Commit

Permalink
Fix missing await on ResolveKeyLink call
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxhy committed Oct 18, 2023
1 parent fe34f78 commit 7d150f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion KeyManager.Library/KeyStore/KeyStore.cs
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public virtual async Task Publish(KeyStore store, Func<string, KeyStore?> getFav
KeyEntry = entry,
KeyContainer = kv
};
kv.Key.SetAggregatedValue(ks.ResolveKeyLink(kv.Key.Link.KeyIdentifier, keClass, kv.Key.Link.ContainerSelector, ComputeDivInput(divContext, kv.Key.Link.DivInput)));
kv.Key.SetAggregatedValue(await ks.ResolveKeyLink(kv.Key.Link.KeyIdentifier, keClass, kv.Key.Link.ContainerSelector, ComputeDivInput(divContext, kv.Key.Link.DivInput)));
await ks.Close();
}
}
Expand Down

0 comments on commit 7d150f3

Please sign in to comment.