fix typo in erasure

This commit is contained in:
Lewis Crichton
2023-05-30 22:53:08 +01:00
parent 4fabb38dd9
commit e766e5e592
+1 -1
View File
@@ -327,7 +327,7 @@ func main() {
userId := c.Context().UserValue("userId").(string) userId := c.Context().UserValue("userId").(string)
rdb.Del(c.Context(), "settings:"+hash(PEPPER_SETTINGS+userId)) 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) return c.SendStatus(204)
}) })