From 358703231a2ecbe5bcae2372b96fdb52912cbe0a Mon Sep 17 00:00:00 2001 From: h7x4 Date: Mon, 8 Dec 2025 00:28:38 +0900 Subject: [PATCH] commands/listplaylistinfo: fix response type --- src/commands/stored_playlists/listplaylistinfo.rs | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/src/commands/stored_playlists/listplaylistinfo.rs b/src/commands/stored_playlists/listplaylistinfo.rs index ed18603..63389e7 100644 --- a/src/commands/stored_playlists/listplaylistinfo.rs +++ b/src/commands/stored_playlists/listplaylistinfo.rs @@ -60,15 +60,7 @@ impl CommandRequest<'_> for ListPlaylistInfoRequest { } #[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] -pub struct ListPlaylistInfoResponse(Vec); - -#[derive(Debug, Clone, PartialEq, Serialize, Deserialize)] -pub struct ListPlaylistInfoResponseEntry { - position: SongPosition, - id: SongId, - priority: Priority, - song_info: DbSongInfo, -} +pub struct ListPlaylistInfoResponse(Vec); impl CommandResponse<'_> for ListPlaylistInfoResponse { fn into_response_enum(self) -> crate::Response {