fix(azuredeployer): BotExists logic fixed.
This commit is contained in:
parent
13fdc5a3ff
commit
8eff335e34
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Reference in a new issue