From 15fdc99ec095c4f9167a33c26720cad2120ec2bb Mon Sep 17 00:00:00 2001 From: Alex Weston <43505988+aW3st@users.noreply.github.com> Date: Fri, 21 Nov 2025 15:30:03 -0500 Subject: [PATCH] fix(chromium): add net::ERR_HTTP2_PROTOCOL_ERROR in the EventLoadingFailed list --- pkg/modules/chromium/events.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/modules/chromium/events.go b/pkg/modules/chromium/events.go index 74716156..f249b2bd 100644 --- a/pkg/modules/chromium/events.go +++ b/pkg/modules/chromium/events.go @@ -235,6 +235,7 @@ func listenForEventLoadingFailed(ctx context.Context, logger *zap.Logger, option "net::ERR_BLOCKED_BY_CLIENT", "net::ERR_BLOCKED_BY_RESPONSE", "net::ERR_FILE_NOT_FOUND", + "net::ERR_HTTP2_PROTOCOL_ERROR", } if !slices.Contains(errors, ev.ErrorText) { logger.Debug(fmt.Sprintf("skip EventLoadingFailed: '%s' is not part of %+v", ev.ErrorText, errors))