Large bugfix

This commit is contained in:
Michael Wain 2025-03-06 02:09:58 +03:00
parent d482acca94
commit 913da0c0ef
4 changed files with 43 additions and 41 deletions

4
Cargo.lock generated
View File

@ -2356,8 +2356,8 @@ dependencies = [
[[package]] [[package]]
name = "soundcloud" name = "soundcloud"
version = "0.1.9" version = "0.1.11"
source = "git+https://gitea.awain.net/alterwain/soundcloud_api.git#a6732847bebbcb6e59a1b8a44a965fe7092af6e9" source = "git+https://gitea.awain.net/alterwain/soundcloud_api.git#06a9c773fc01e37867298a4985899be843aeb3ae"
dependencies = [ dependencies = [
"hyper-util", "hyper-util",
"regex", "regex",

View File

@ -20,7 +20,7 @@ crossterm = { version = "0.28.1", features = ["event-stream"] }
futures = "0.3" futures = "0.3"
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7.12", features = ["codec"] } tokio-util = { version = "0.7.12", features = ["codec"] }
soundcloud = { version = "0.1.9", git = "https://gitea.awain.net/alterwain/soundcloud_api.git" } soundcloud = { version = "0.1.11", git = "https://gitea.awain.net/alterwain/soundcloud_api.git" }
youtube-api = { version = "0.1.1", git = "https://gitea.awain.net/alterwain/youtube_api.git" } youtube-api = { version = "0.1.1", git = "https://gitea.awain.net/alterwain/youtube_api.git" }
itunesdb = { version = "0.1.99", git = "https://gitea.awain.net/alterwain/ITunesDB.git" } itunesdb = { version = "0.1.99", git = "https://gitea.awain.net/alterwain/ITunesDB.git" }
rand = "0.8.5" rand = "0.8.5"

View File

@ -419,7 +419,8 @@ impl MainScreen {
self.set_mode(self.mode); self.set_mode(self.mode);
if let Some(pls) = &self.youtube { if let Some(pls) = &self.youtube {
let y = &pls.get(self.pl_table.selected_row()).unwrap().videos; if let Some(ypl) = &pls.get(self.pl_table.selected_row()) {
let y = ypl.videos.clone();
let data = y let data = y
.iter() .iter()
.map(|video| { .map(|video| {
@ -435,6 +436,7 @@ impl MainScreen {
self.song_table.set_data(data); self.song_table.set_data(data);
} }
}
self.song_table.set_title(" Songs ".to_string()); self.song_table.set_title(" Songs ".to_string());
} }
1 => { 1 => {

View File

@ -940,11 +940,10 @@ async fn parse_itunes(sender: &Sender<AppEvent>, path: String) -> XDatabase {
tokio::spawn(async move { tokio::spawn(async move {
let app_version = soundcloud::get_app().await.unwrap().unwrap(); let app_version = soundcloud::get_app().await.unwrap().unwrap();
let client_id = soundcloud::get_client_id().await.unwrap().unwrap(); let client_id = soundcloud::get_client_id().await.unwrap().unwrap();
let playlists = if let Ok(playlists) =
soundcloud::get_playlists(soundcloud_user_id, client_id.clone(), app_version.clone()) soundcloud::get_playlists(soundcloud_user_id, client_id.clone(), app_version.clone())
.await .await
.unwrap(); {
let mut playlists = playlists.collection; let mut playlists = playlists.collection;
for playlist in playlists.iter_mut() { for playlist in playlists.iter_mut() {
@ -970,6 +969,7 @@ async fn parse_itunes(sender: &Sender<AppEvent>, path: String) -> XDatabase {
collection: playlists, collection: playlists,
})) }))
.await; .await;
}
}); });
database database