fix(basic.gblib): update ChatServices.ts #420

Closed
eltociear wants to merge 2540 commits from patch-1 into main
Showing only changes of commit 8eff335e34 - Show all commits

View file

@ -242,7 +242,7 @@ export class AzureDeployerService implements IGBInstallationDeployer {
const req = AzureDeployerService.createRequestObject(url, accessToken, 'POST', JSON.stringify(body));
const res = await httpClient.sendRequest(req);
return res.parsedBody.valid;
return !res.parsedBody.valid;
}
public async updateBotProxy(botId, group, endpoint) {