Skip to content

Commit

Permalink
Fixed inbox tab not showing user's own posts in admin-x-activitypub (#…
Browse files Browse the repository at this point in the history
…21601)

refs
[AP-588](https://linear.app/ghost/issue/AP-588/inbox-tab-not-showing-users-own-posts)

Fixed inbox tab not showing user's own posts in admin-x-activitypub by
ensuring that the `includeOwn` parameter is set to `true` when fetching
the activities for the inbox tab
  • Loading branch information
mike182uk authored Nov 12, 2024
1 parent d555cc6 commit 0f2058c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions apps/admin-x-activitypub/src/components/Inbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ const Inbox: React.FC<InboxProps> = ({}) => {

const {getActivitiesQuery, updateActivity} = useActivitiesForUser({
handle: 'index',
includeOwn: true,
excludeNonFollowers: true,
filter: {
type: ['Create:Article', 'Create:Note', 'Announce:Note']
Expand Down

0 comments on commit 0f2058c

Please sign in to comment.