2 Commits

Author SHA1 Message Date
66052e4f74 chore: version bump to 0.10.6
Some checks failed
Rust / build (push) Has been cancelled
Release Plz / Release-plz (push) Has been cancelled
2024-08-16 14:33:37 +02:00
09b0d6fd9d fix: yt-dlp errors for playlist parsing 2024-08-16 14:33:22 +02:00
3 changed files with 3 additions and 2 deletions

2
Cargo.lock generated
View File

@@ -1311,7 +1311,7 @@ dependencies = [
[[package]]
name = "lyra"
version = "0.10.5"
version = "0.10.6"
dependencies = [
"dotenv",
"json",

View File

@@ -1,6 +1,6 @@
[package]
name = "lyra"
version = "0.10.5"
version = "0.10.6"
authors = ["Michał Czyż <mike@c2yz.com>"]
edition = "2021"
description = "A featureful Discord bot written in Rust."

View File

@@ -132,6 +132,7 @@ async fn parse_data(data: String) -> VecDeque<String> {
.unwrap();
let list = Command::new("yt-dlp")
.args(["--username", "oauth2", "--password", "''"])
.args(["-j", "--flat-playlist", track])
.output()
.expect("Failed to execute process")