From 9aad9ba3896acc457b521101d228f6c8370ee97d Mon Sep 17 00:00:00 2001 From: Sayem Chowdhury Date: Tue, 30 Mar 2021 17:07:38 +0600 Subject: [PATCH] update song title --- src/converter/parse.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/converter/parse.ts b/src/converter/parse.ts index 1988414..def25d4 100644 --- a/src/converter/parse.ts +++ b/src/converter/parse.ts @@ -188,7 +188,7 @@ export const parseInfo = async (url: string) => { linktype, linkinfo, tracks: tracks.map((t) => { - if (t.VERSION) { + if (t.VERSION && !t.SNG_TITLE.includes(t.VERSION)) { t.SNG_TITLE += ' ' + t.VERSION; } return t;