You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Steps to reproduce:
2. Go to any user timeline that has a pinned post.
3. Scroll down until scroll-to-top button appears.
4. Wait until the user makes a new post.
Actual result:
No "new post" indicator (blue dot) appears.
Expected result:
"New post" indicator (blue dot) should appear.
getAuthorFeed will return two posts even with limit=1 parameter if a pinned post exists. But AuthorFeedAPI.peekLatest will always return the first element (that is, the pinned post):
Steps to Reproduce
Steps to reproduce:
2. Go to any user timeline that has a pinned post.
3. Scroll down until scroll-to-top button appears.
4. Wait until the user makes a new post.
Actual result:
No "new post" indicator (blue dot) appears.
Expected result:
"New post" indicator (blue dot) should appear.
Attachments
No response
What platform(s) does this occur on?
Web (Desktop)
Device Info
Windows 10 24H2 build 26100.2894
What version of the app are you using?
Build version: 1.97.0; Bundle info: 1a60481 (prod); Bundle date: 25020619; Platform: web; Platform version: undefined
Additional Information
getAuthorFeed
will return two posts even withlimit=1
parameter if a pinned post exists. ButAuthorFeedAPI.peekLatest
will always return the first element (that is, the pinned post):social-app/src/lib/api/feed/author.ts
Lines 32 to 37 in 98b7e95
So
pollLatest
will never detect new posts unless the pinned post changes:social-app/src/state/queries/post-feed.ts
Lines 427 to 429 in 98b7e95
The text was updated successfully, but these errors were encountered: