Skip to content

Commit

Permalink
Update StorageManager.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
aritchie committed Jun 29, 2024
1 parent 079c72f commit 9ba758c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ protected virtual string GetPersistentStoreKey(object request, bool createIfNotE
{
var key = this.GetStoreKeyFromRequest(request);
this.EnsureKeyLoad();
if (!this.keys.ContainsKey(key))
if (this.keys.ContainsKey(key))
{
key = this.keys[key];
}
Expand Down

0 comments on commit 9ba758c

Please sign in to comment.