Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #8882 from internet-development/binaryfiddler/isnetwork

wrapp failed to send feed interactions inside isNetworkError

authored by

jim and committed by
GitHub
78e1e26a 912ab1bd

+4 -1
+4 -1
src/state/feed-feedback.tsx
··· 11 11 import throttle from 'lodash.throttle' 12 12 13 13 import {FEEDBACK_FEEDS, STAGING_FEEDS} from '#/lib/constants' 14 + import {isNetworkError} from '#/lib/hooks/useCleanError' 14 15 import {logEvent} from '#/lib/statsig/statsig' 15 16 import {Logger} from '#/logger' 16 17 import { ··· 83 84 }, 84 85 ) 85 86 .catch((e: any) => { 86 - logger.warn('Failed to send feed interactions', {error: e}) 87 + if (!isNetworkError(e)) { 88 + logger.warn('Failed to send feed interactions', {error: e}) 89 + } 87 90 }) 88 91 89 92 // Send to Statsig