fix(api): default to not using lookup cache by default for ResolveGroup

This commit is contained in:
spiral 2022-04-09 18:04:27 -04:00
parent fb8249705d
commit 756859ebe6
No known key found for this signature in database
GPG Key ID: 244A11E4B0BCF40E

View File

@ -75,7 +75,7 @@ public class PKControllerBase: ControllerBase
return null;
}
protected async Task<PKGroup?> ResolveGroup(string groupRef, bool cache = true)
protected async Task<PKGroup?> ResolveGroup(string groupRef, bool cache = false)
{
if (cache)
{