don't try to parse pong

This commit is contained in:
FloatingGhost 2022-07-22 16:08:29 +01:00
parent e48506844d
commit 3d921c81bd

View file

@ -1440,6 +1440,8 @@ export const ProcessedWS = ({
export const handleMastoWS = (wsEvent) => {
const { data } = wsEvent
if (!data) return
if (data === 'pong') return
const parsedEvent = JSON.parse(data)
const { event, payload } = parsedEvent
if (MASTODON_STREAMING_EVENTS.has(event) || PLEROMA_STREAMING_EVENTS.has(event)) {