Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Make via-repost notifs groupable (#8429)

authored by samuel.fm and committed by

GitHub 4c5a4e47 7b3916c8

+7 -1
+7 -1
src/state/queries/notifications/util.ts
··· 22 22 type NotificationType, 23 23 } from './types' 24 24 25 - const GROUPABLE_REASONS = ['like', 'repost', 'follow'] 25 + const GROUPABLE_REASONS = [ 26 + 'like', 27 + 'repost', 28 + 'follow', 29 + 'like-via-repost', 30 + 'repost-via-repost', 31 + ] 26 32 const MS_1HR = 1e3 * 60 * 60 27 33 const MS_2DAY = MS_1HR * 48 28 34