Only show pins on Posts and Replies (#7544)

This commit is contained in:
dan
2025-01-22 20:01:37 +00:00
committed by GitHub
parent 9e1cd11e22
commit 638008c781
+3 -1
View File
@@ -23,7 +23,9 @@ export class AuthorFeedAPI implements FeedAPI {
get params() {
const params = {...this._params}
params.includePins = params.filter !== 'posts_with_media'
params.includePins =
params.filter === 'posts_with_replies' ||
params.filter === 'posts_and_author_threads'
return params
}