Bluesky app fork with some witchin' additions 💫

Don't need to be logging upstream errors (#9260)

authored by

Eric Bailey and committed by
GitHub
24606dbc 6f31121e

+1 -6
+1 -6
src/state/feed-feedback.tsx
··· 11 11 import throttle from 'lodash.throttle' 12 12 13 13 import {PROD_FEEDS, STAGING_FEEDS} from '#/lib/constants' 14 - import {isNetworkError} from '#/lib/hooks/useCleanError' 15 14 import {Logger} from '#/logger' 16 15 import { 17 16 type FeedSourceFeedInfo, ··· 129 128 }, 130 129 }, 131 130 ) 132 - .catch((e: any) => { 133 - if (!isNetworkError(e)) { 134 - logger.warn('Failed to send feed interactions', {error: e}) 135 - } 136 - }) 131 + .catch(() => {}) // ignore upstream errors 137 132 138 133 // Send to Statsig 139 134 if (aggregatedStats.current === null) {