Fix typo in Authlib cache for OAuth

This commit is contained in:
Mawoka
2025-10-26 09:00:37 +01:00
parent 5939b2ab48
commit f4e3bb1529
+1 -1
View File
@@ -29,7 +29,7 @@ class RedisCache:
await redis.set(f"authlib:{key}", data, ex=expires)
async def delete(self, key: str) -> None:
await redis.delete(key)
await redis.delete(f"authlib:{key}")
@lru_cache()