We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7977ef commit 5a94207Copy full SHA for 5a94207
src/plus/gk/account/organizationService.ts
@@ -209,7 +209,11 @@ export class OrganizationService implements Disposable {
209
if (id == null) return undefined;
210
211
if (!this._organizationSettings?.has(id) || options?.force === true) {
212
- const rsp = await this.connection.fetchApi(`v1/organizations/settings`, { method: 'GET' });
+ const rsp = await this.connection.fetchApi(
213
+ `v1/organizations/settings`,
214
+ { method: 'GET' },
215
+ { organizationId: id },
216
+ );
217
if (!rsp.ok) {
218
Logger.error(
219
'',
0 commit comments