From 4f6b140c282b6c86ab8bc36d88cece9ea82cfec3 Mon Sep 17 00:00:00 2001 From: Khairul Hidayat Date: Mon, 25 Mar 2024 07:04:28 +0700 Subject: [PATCH] fix: id3 tags image invalid result --- backend/routes/files/id3Tags.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/routes/files/id3Tags.ts b/backend/routes/files/id3Tags.ts index d02c5ff..9cfdf5f 100644 --- a/backend/routes/files/id3Tags.ts +++ b/backend/routes/files/id3Tags.ts @@ -27,7 +27,7 @@ export const getId3Tags = async (c: Context) => { data.image = imgUrl.toString(); } - tags = id3Tags; + tags = data; } catch (err) {} cached.set(tags);