update playlist after channel switch, fix #676

This commit is contained in:
jb-alvarado 2024-06-19 08:13:50 +02:00
parent 69c08308a1
commit 9ebaca5c6b
3 changed files with 6 additions and 6 deletions

8
Cargo.lock generated
View File

@ -1293,7 +1293,7 @@ checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
[[package]]
name = "ffplayout"
version = "0.23.1"
version = "0.23.2"
dependencies = [
"chrono",
"clap",
@ -1315,7 +1315,7 @@ dependencies = [
[[package]]
name = "ffplayout-api"
version = "0.23.1"
version = "0.23.2"
dependencies = [
"actix-files",
"actix-multipart",
@ -1359,7 +1359,7 @@ dependencies = [
[[package]]
name = "ffplayout-lib"
version = "0.23.1"
version = "0.23.2"
dependencies = [
"chrono",
"crossbeam-channel",
@ -3639,7 +3639,7 @@ dependencies = [
[[package]]
name = "tests"
version = "0.23.1"
version = "0.23.2"
dependencies = [
"chrono",
"crossbeam-channel",

View File

@ -4,7 +4,7 @@ default-members = ["ffplayout-api", "ffplayout-engine", "tests"]
resolver = "2"
[workspace.package]
version = "0.23.1"
version = "0.23.2"
license = "GPL-3.0"
repository = "https://github.com/ffplayout/ffplayout"
authors = ["Jonathan Baecker <jonbae77@gmail.com>"]

View File

@ -48,7 +48,7 @@ pub async fn create_channel(
.replace("stream.m3u8", &format!("stream{channel_num}.m3u8"))
.replace("stream-%d.ts", &format!("stream{channel_num}-%d.ts"));
let toml_string = toml_edit::ser::to_string(&config)?;
let toml_string = toml_edit::ser::to_string_pretty(&config)?;
fs::write(&target_channel.config_path, toml_string)?;
let new_channel = handles::insert_channel(conn, target_channel).await?;