From 756859ebe6c9bdbf6024c7f7be91af99710f5908 Mon Sep 17 00:00:00 2001 From: spiral Date: Sat, 9 Apr 2022 18:04:27 -0400 Subject: [PATCH] fix(api): default to not using lookup cache by default for ResolveGroup --- PluralKit.API/Controllers/PKControllerBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PluralKit.API/Controllers/PKControllerBase.cs b/PluralKit.API/Controllers/PKControllerBase.cs index a3cec128..18e8593a 100644 --- a/PluralKit.API/Controllers/PKControllerBase.cs +++ b/PluralKit.API/Controllers/PKControllerBase.cs @@ -75,7 +75,7 @@ public class PKControllerBase: ControllerBase return null; } - protected async Task ResolveGroup(string groupRef, bool cache = true) + protected async Task ResolveGroup(string groupRef, bool cache = false) { if (cache) {