diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a9ddf19..e3e72444 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ ### **Copyrigth**: *Tiledesk SRL* +# 1.23.2 # 1.23.1 # 1.23.0 diff --git a/package-lock.json b/package-lock.json index b92e65a8..feb87aaf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@tiledesk/cds", - "version": "1.23.1", + "version": "1.23.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@tiledesk/cds", - "version": "1.23.1", + "version": "1.23.2", "license": "MIT", "dependencies": { "@angular/animations": "^14.2.0", diff --git a/package.json b/package.json index 022043f6..38b725a0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@tiledesk/cds", "author": "Tiledesk SRL", - "version": "1.23.1", + "version": "1.23.2", "license": "MIT", "homepage": "https://www.tiledesk.com", "repository": { diff --git a/src/app/models/action-model.ts b/src/app/models/action-model.ts index 206ab5b3..82f4ed26 100644 --- a/src/app/models/action-model.ts +++ b/src/app/models/action-model.ts @@ -172,7 +172,7 @@ export class ActionWebRequest extends Action { constructor(){ super(); this.url = ''; - this.headersString = {"Content-Type":"*/*", "Cache-Control":"no-cache", "User-Agent": BRAND_BASE_INFO['BRAND_NAME']+" BotRuntime", "Accept":"*/*"}; + this.headersString = {"Content-Type":"*/*", "Cache-Control":"no-cache", "User-Agent": BRAND_BASE_INFO['BRAND_NAME']+"BotRuntime", "Accept":"*/*"}; this.jsonBody = JSON.stringify({}); this.assignTo = ''; this.assignments = {}; @@ -198,7 +198,7 @@ export class ActionWebRequestV2 extends Action { constructor(){ super(); this.url = ''; - this.headersString = {"Content-Type":"*/*", "Cache-Control":"no-cache", "User-Agent":"TiledeskBotRuntime", "Accept":"*/*"}; + this.headersString = {"Content-Type":"*/*", "Cache-Control":"no-cache", "User-Agent":BRAND_BASE_INFO['BRAND_NAME']+"BotRuntime", "Accept":"*/*"}; this.settings = { timeout: 20000 } this.jsonBody = null this.bodyType = 'none'