wire mid-roll breaks into schedule engine with chapter-aware splitting

This commit is contained in:
2026-07-12 14:12:59 +02:00
parent 79e975f057
commit 874de68fb5
5 changed files with 333 additions and 37 deletions

View File

@@ -128,13 +128,15 @@ impl KTvMcpServer {
};
channels::update_channel(
&self.channel_cmd_deps,
id,
self.owner_id,
p.name,
p.timezone,
p.description,
schedule_config,
gap_filler,
channels::UpdateChannelArgs {
channel_id: id,
owner_id: self.owner_id,
name: p.name,
timezone: p.timezone,
description: p.description,
schedule_config,
gap_filler,
},
)
.await
}