From e766e5e592854a7edcc70e3e8cc24499c0564bd0 Mon Sep 17 00:00:00 2001 From: Lewis Crichton Date: Tue, 30 May 2023 22:53:08 +0100 Subject: [PATCH] fix typo in erasure --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 62b85b9..873a11e 100644 --- a/main.go +++ b/main.go @@ -327,7 +327,7 @@ func main() { userId := c.Context().UserValue("userId").(string) rdb.Del(c.Context(), "settings:"+hash(PEPPER_SETTINGS+userId)) - rdb.Del(c.Context(), "secret"+hash(PEPPER_SECRETS+userId)) + rdb.Del(c.Context(), "secrets:"+hash(PEPPER_SECRETS+userId)) return c.SendStatus(204) })