feat: ICY metadata fallback for non-Record stations

This commit is contained in:
nk
2026-06-02 20:03:25 +03:00
parent 09211dceb5
commit 1b0c59264f
2 changed files with 113 additions and 1 deletions

View File

@@ -2,9 +2,15 @@ import { Module } from '@nestjs/common';
import { NowPlayingGateway } from './now-playing.gateway';
import { NowPlayingService } from './now-playing.service';
import { RecordStationSyncService } from './record-station-sync.service';
import { IcyNowPlayingService } from './icy-now-playing.service';
@Module({
providers: [NowPlayingGateway, NowPlayingService, RecordStationSyncService],
providers: [
NowPlayingGateway,
NowPlayingService,
RecordStationSyncService,
IcyNowPlayingService,
],
exports: [NowPlayingService],
})
export class NowPlayingModule {}