Fix bookmarks and favourites not being filtered (#34260)

This commit is contained in:
Claire 2025-03-25 16:20:36 +01:00
parent d6442b5455
commit 105e5b1d76
4 changed files with 6 additions and 1 deletions

View file

@ -15,7 +15,7 @@ export const makeGetStatus = () => {
(state, { id }) => state.getIn(['accounts', state.getIn(['statuses', id, 'account'])]),
(state, { id }) => state.getIn(['accounts', state.getIn(['statuses', state.getIn(['statuses', id, 'reblog']), 'account'])]),
getFilters,
(_, { contextType }) => contextType === 'detailed',
(_, { contextType }) => ['detailed', 'bookmarks', 'favourites'].includes(contextType),
],
(statusBase, statusReblog, accountBase, accountReblog, filters, warnInsteadOfHide) => {