From cce533cdb41a78158c4a9e530196a14a109c8671 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sat, 26 Jul 2025 12:30:05 -0400 Subject: [PATCH] Added song_id to CoverArt --- src/coverart.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/coverart.rs b/src/coverart.rs index b13a99b..7165306 100644 --- a/src/coverart.rs +++ b/src/coverart.rs @@ -9,6 +9,7 @@ pub struct CoverArt { pub path: String, #[serde(skip)] pub data: Vec, + pub song_id: uuid::Uuid, } pub mod init { @@ -20,6 +21,7 @@ pub mod init { title: String::new(), path: path.clone(), data: Vec::new(), + song_id: uuid::Uuid::nil(), } } }