Skip to content

Commit 1b6ec72

Browse files
committed
fix for getting settings (also resolve avatar)
Tool: gitpod/catfood.gitpod.cloud
1 parent ec4470b commit 1b6ec72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/server/src/api/organization-service-api.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ export class OrganizationServiceAPI implements ServiceImpl<typeof OrganizationSe
239239
throw new ApplicationError(ErrorCodes.BAD_REQUEST, "organizationId is required");
240240
}
241241

242-
const settings = await this.orgService.getSettings(ctxUserId(), req.organizationId);
242+
const settings = await this.orgService.getSettingsWithResolvedWelcomeMessage(ctxUserId(), req.organizationId);
243243
const response = new GetOrganizationSettingsResponse();
244244
response.settings = this.apiConverter.toOrganizationSettings(settings);
245245

0 commit comments

Comments
 (0)