From 15eeacd1144b597710d76767eb507deb73a24071 Mon Sep 17 00:00:00 2001 From: Stanislav Fifik Date: Fri, 19 Jun 2026 14:05:25 +0200 Subject: [PATCH] refactor(receiver): comment out broken ArtworkV1Support and VisualizerV1Support --- third_party/sendspin-go/pkg/sendspin/receiver.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/third_party/sendspin-go/pkg/sendspin/receiver.go b/third_party/sendspin-go/pkg/sendspin/receiver.go index 918947a..89dcb76 100644 --- a/third_party/sendspin-go/pkg/sendspin/receiver.go +++ b/third_party/sendspin-go/pkg/sendspin/receiver.go @@ -263,14 +263,14 @@ func (r *Receiver) buildClientConfig() (protocol.Config, error) { BufferCapacity: r.config.BufferCapacity, SupportedCommands: []string{"volume", "mute"}, }, - ArtworkV1Support: &protocol.ArtworkV1Support{ - Channels: []protocol.ArtworkChannel{ - {Source: "album", Format: "jpeg", MediaWidth: 600, MediaHeight: 600}, - }, - }, - VisualizerV1Support: &protocol.VisualizerV1Support{ - BufferCapacity: r.config.BufferCapacity, - }, + // ArtworkV1Support: &protocol.ArtworkV1Support{ + // Channels: []protocol.ArtworkChannel{ + // {Source: "album", Format: "jpeg", MediaWidth: 600, MediaHeight: 600}, + // }, + // }, + // VisualizerV1Support: &protocol.VisualizerV1Support{ + // BufferCapacity: r.config.BufferCapacity, + // }, }, nil }