tsk-51: Path in CoverArt does not need to be serialized

This commit is contained in:
2025-08-01 16:07:37 -04:00
parent 228ca67a16
commit d6383e24c9

View File

@@ -6,6 +6,7 @@ use serde::{Deserialize, Serialize};
pub struct CoverArt { pub struct CoverArt {
pub id: uuid::Uuid, pub id: uuid::Uuid,
pub title: String, pub title: String,
#[serde(skip)]
pub path: String, pub path: String,
#[serde(skip)] #[serde(skip)]
pub data: Vec<u8>, pub data: Vec<u8>,