diff --git a/packages/azuredeployer.gbapp/services/AzureDeployerService.ts b/packages/azuredeployer.gbapp/services/AzureDeployerService.ts index b278803c..9b160574 100644 --- a/packages/azuredeployer.gbapp/services/AzureDeployerService.ts +++ b/packages/azuredeployer.gbapp/services/AzureDeployerService.ts @@ -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) {