Fix warnings and errors

This commit is contained in:
Ajay
2022-04-13 17:43:38 -04:00
parent 146ba4ff93
commit 1df8117105
4 changed files with 8 additions and 10 deletions

View File

@@ -20,7 +20,7 @@ async function getFromRedis<T extends string>(key: HashedValue): Promise<T & Has
const redisKey = shaHashKey(key);
try {
const reply = await redis.get(redisKey);;
const reply = await redis.get(redisKey);
if (reply) {
Logger.debug(`Got data from redis: ${reply}`);