feat: trying to add hashes to scripts
This commit is contained in:
@@ -96,5 +96,7 @@ export async function getAllRecommendations(): Promise<
|
||||
> {
|
||||
const keys = cache.keys();
|
||||
const res = await Promise.all(keys.map((k) => cache.get(k)));
|
||||
return res.filter((s) => !!s).map((r) => JSON.parse(r));
|
||||
return res.filter((s) => !!s).map((r) =>
|
||||
typeof r === "string" ? JSON.parse(r) : r
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user