From 521b63185b4edf12fa6464cc335707676f958b3b Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Wed, 19 Feb 2025 22:14:38 -0600 Subject: [PATCH] Catch webPush --- packages/ditto/pipeline.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/ditto/pipeline.ts b/packages/ditto/pipeline.ts index d7536c91..07be1bd9 100644 --- a/packages/ditto/pipeline.ts +++ b/packages/ditto/pipeline.ts @@ -109,7 +109,8 @@ async function handleEvent(event: DittoEvent, opts: PipelineOpts): Promise prewarmLinkPreview(event, opts.signal), generateSetEvents(event), ]) - .then(() => webPush(event)); + .then(() => webPush(event)) + .catch(() => {}); } }