From 262742603c523b33bffe165ea133c0201bdd145e Mon Sep 17 00:00:00 2001 From: Knut Ahlers Date: Wed, 3 Apr 2024 13:14:44 +0200 Subject: [PATCH] [eventsub] Fix: Fetching existing subscriptions broken as of fetch must not specify more than one filter Signed-off-by: Knut Ahlers --- pkg/twitch/eventsub.go | 1 - 1 file changed, 1 deletion(-) diff --git a/pkg/twitch/eventsub.go b/pkg/twitch/eventsub.go index 4715304..0f1b8b7 100644 --- a/pkg/twitch/eventsub.go +++ b/pkg/twitch/eventsub.go @@ -324,7 +324,6 @@ func (c *Client) createEventSubSubscription(ctx context.Context, auth AuthType, if mustFetchSubsctiption { params := make(url.Values) params.Set("status", "enabled") - params.Set("type", sub.Type) if err = c.Request(ctx, ClientRequestOpts{ AuthType: auth,