From d83556e9fa187f3f4fe1077db988ca0869943c15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aar=C3=B3n=20Rodr=C3=ADguez?= <33246631+AARP41298@users.noreply.github.com> Date: Sat, 26 Apr 2025 11:37:16 -0600 Subject: [PATCH] feat(tuna-obs): added alternativeTitle and tags to tuna (#3288) thanks to 3206 --- src/plugins/tuna-obs/index.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/plugins/tuna-obs/index.ts b/src/plugins/tuna-obs/index.ts index 07d82f04..a9759132 100644 --- a/src/plugins/tuna-obs/index.ts +++ b/src/plugins/tuna-obs/index.ts @@ -16,7 +16,9 @@ interface Data { progress: number; status: string; title: string; + alternativeTitle: string; url: string; + tags: string[]; } export default createPlugin({ @@ -86,10 +88,12 @@ export default createPlugin({ cover_url: songInfo.imageSrc ?? '', album_url: songInfo.imageSrc ?? '', title: songInfo.title, + alternativeTitle: songInfo.alternativeTitle ?? '', artists: [songInfo.artist], status: songInfo.isPaused ? 'stopped' : 'playing', album: songInfo.album, url: songInfo.url ?? '', + tags: songInfo.tags ?? [], }); }); },