From 24ed44e8ab9fb8aa7cdbe93b4e63b4a155592d70 Mon Sep 17 00:00:00 2001 From: nk Date: Wed, 3 Jun 2026 12:10:04 +0300 Subject: [PATCH] =?UTF-8?q?feat(now-playing):=20=D0=B4=D0=BE=D0=B1=D0=B0?= =?UTF-8?q?=D0=B2=D0=B8=D1=82=D1=8C=20name=20=D1=81=D1=82=D0=B0=D0=BD?= =?UTF-8?q?=D1=86=D0=B8=D0=B8=20=D0=B2=20=D0=BE=D1=82=D0=B2=D0=B5=D1=82=20?= =?UTF-8?q?(=D0=B4=D0=BB=D1=8F=20=D0=BC=D0=B0=D1=82=D1=87=D0=B0=20=D0=BE?= =?UTF-8?q?=D0=B1=D0=BB=D0=BE=D0=B6=D0=B5=D0=BA=20=D0=BD=D0=B0=20=D0=BA?= =?UTF-8?q?=D0=BB=D0=B8=D0=B5=D0=BD=D1=82=D0=B5)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/now-playing/now-playing.controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/now-playing/now-playing.controller.ts b/src/now-playing/now-playing.controller.ts index 169039d..dc133e5 100644 --- a/src/now-playing/now-playing.controller.ts +++ b/src/now-playing/now-playing.controller.ts @@ -14,6 +14,7 @@ export class NowPlayingController { const list = await this.nowPlayingService.getAllNowPlaying(); return list.map((np) => ({ stationId: np.station.stationId, + name: np.station.name, song: np.song, artist: np.artist, coverUrl: np.coverUrl,