Skip to content

Commit

Permalink
fix: returning user status text for apps (#32314)
Browse files Browse the repository at this point in the history
Co-authored-by: Kevin Aleman <[email protected]>
  • Loading branch information
AllanPazRibeiro and KevLehman authored May 10, 2024
1 parent 3433f48 commit bf4b4cc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/rich-bananas-complain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@rocket.chat/meteor': patch
---

Fixed an issue on Users converter that was not returning the `statusText` property from users even when the typing indicated property existed.
1 change: 1 addition & 0 deletions apps/meteor/app/apps/server/converters/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ export class AppUsersConverter {
name: user.name,
roles: user.roles,
status: user.status,
statusText: user.statusText,
statusConnection,
utcOffset: user.utcOffset,
createdAt: user.createdAt,
Expand Down

0 comments on commit bf4b4cc

Please sign in to comment.