feat(now-playing): добавить name станции в ответ (для матча обложек на клиенте)

This commit is contained in:
nk
2026-06-03 12:10:04 +03:00
parent df20e0fac6
commit 24ed44e8ab

View File

@@ -14,6 +14,7 @@ export class NowPlayingController {
const list = await this.nowPlayingService.getAllNowPlaying(); const list = await this.nowPlayingService.getAllNowPlaying();
return list.map((np) => ({ return list.map((np) => ({
stationId: np.station.stationId, stationId: np.station.stationId,
name: np.station.name,
song: np.song, song: np.song,
artist: np.artist, artist: np.artist,
coverUrl: np.coverUrl, coverUrl: np.coverUrl,