Skip to content

Commit

Permalink
fix: wrong value used for workspace registration
Browse files Browse the repository at this point in the history
  • Loading branch information
sampaiodiego committed Jan 2, 2024
1 parent fb7bfb0 commit 886d920
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/tiny-glasses-help.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@rocket.chat/meteor': patch
---

Fix wrong value used for Workspace Registration
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export async function buildWorkspaceRegistrationData<T extends string | undefine
const language = settings.get<string>('Language');
const organizationType = settings.get<string>('Organization_Type');
const industry = settings.get<string>('Industry');
const orgSize = settings.get<string>('Organization_Size');
const orgSize = settings.get<string>('Size');
const workspaceType = settings.get<string>('Server_Type');

const seats = await Users.getActiveLocalUserCount();
Expand Down

0 comments on commit 886d920

Please sign in to comment.