diff --git a/.changeset/mean-seals-do.md b/.changeset/mean-seals-do.md new file mode 100644 index 0000000000000..736d4e02a81ff --- /dev/null +++ b/.changeset/mean-seals-do.md @@ -0,0 +1,6 @@ +--- +'@rocket.chat/meteor': patch +'@rocket.chat/apps-engine': patch +--- + +Fixes an issue where apps would never get the bio of a user even though the type has the field defined diff --git a/apps/meteor/app/apps/server/converters/users.js b/apps/meteor/app/apps/server/converters/users.js index b8f4d5c9043b7..fc560185fc8d5 100644 --- a/apps/meteor/app/apps/server/converters/users.js +++ b/apps/meteor/app/apps/server/converters/users.js @@ -35,6 +35,7 @@ export class AppUsersConverter { isEnabled: user.active, name: user.name, roles: user.roles, + bio: user.bio, status: user.status, statusText: user.statusText, statusConnection, @@ -65,6 +66,7 @@ export class AppUsersConverter { active: user.isEnabled, name: user.name, roles: user.roles, + bio: user.bio, status: user.status, statusConnection: user.statusConnection, utcOffset: user.utfOffset,