diff --git a/src/devvit/redis.ts b/src/devvit/redis.ts index d2fba4c..4c2bffd 100644 --- a/src/devvit/redis.ts +++ b/src/devvit/redis.ts @@ -89,7 +89,7 @@ export async function hMGetAsRecord (redis: RedisClient, key: string, fields: st * @param chunkSize The size of each chunk. * @returns {Record} An object with field-value pairs for the specified fields. */ -export async function hMGetAllChunked (redis: RedisClient, key: string, chunkSize = 5000): Promise> { +export async function hGetAllChunked (redis: RedisClient, key: string, chunkSize = 5000): Promise> { const fields = await redis.hKeys(key); if (fields.length === 0) { return {};