From a3fef4ff2b6bc368842ccaf6f4ef4e97073f9f77 Mon Sep 17 00:00:00 2001 From: phoenix Date: Mon, 14 Jul 2025 19:48:58 -0400 Subject: [PATCH] Added skip json operations for data field in CoverArt --- src/coverart.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/coverart.rs b/src/coverart.rs index 810d4e1..b13a99b 100644 --- a/src/coverart.rs +++ b/src/coverart.rs @@ -7,6 +7,7 @@ pub struct CoverArt { pub id: uuid::Uuid, pub title: String, pub path: String, + #[serde(skip)] pub data: Vec, }