[READ ONLY MIRROR] Spark Social AppView Server github.com/sprksocial/server
atproto deno hono lexicon
5
fork

Configure Feed

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

fix: mergeMaps

+9
+9
hydration/index.ts
··· 930 930 threadContexts: mergeMaps(stateA.threadContexts, stateB.threadContexts), 931 931 sounds: mergeMaps(stateA.sounds, stateB.sounds), 932 932 soundAggs: mergeMaps(stateA.soundAggs, stateB.soundAggs), 933 + stories: mergeMaps(stateA.stories, stateB.stories), 933 934 postBlocks: mergeMaps(stateA.postBlocks, stateB.postBlocks), 934 935 reposts: mergeMaps(stateA.reposts, stateB.reposts), 935 936 follows: mergeMaps(stateA.follows, stateB.follows), 936 937 followBlocks: mergeMaps(stateA.followBlocks, stateB.followBlocks), 937 938 likes: mergeMaps(stateA.likes, stateB.likes), 938 939 likeBlocks: mergeMaps(stateA.likeBlocks, stateB.likeBlocks), 940 + labels: mergeMaps(stateA.labels, stateB.labels), 939 941 feedgens: mergeMaps(stateA.feedgens, stateB.feedgens), 940 942 feedgenAggs: mergeMaps(stateA.feedgenAggs, stateB.feedgenAggs), 941 943 feedgenViewers: mergeMaps(stateA.feedgenViewers, stateB.feedgenViewers), 944 + labelers: mergeMaps(stateA.labelers, stateB.labelers), 945 + labelerViewers: mergeMaps(stateA.labelerViewers, stateB.labelerViewers), 946 + labelerAggs: mergeMaps(stateA.labelerAggs, stateB.labelerAggs), 942 947 knownFollowers: mergeMaps(stateA.knownFollowers, stateB.knownFollowers), 948 + bidirectionalBlocks: mergeMaps( 949 + stateA.bidirectionalBlocks, 950 + stateB.bidirectionalBlocks, 951 + ), 943 952 }; 944 953 }; 945 954