@chat21/chat21-web-widget 5.0.99 → 5.0.100

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -6,6 +6,9 @@
6
6
  ### **Copyrigth**:
7
7
  *Tiledesk SRL*
8
8
 
9
+ # 5.0.100
10
+ - **bug-fixed**: if conversation is deleted and user came back, widget shows the same stored conversation as opened (only if singleConversation mode is active)
11
+
9
12
  # 5.0.99
10
13
 
11
14
  # 5.0.99-rc1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@chat21/chat21-web-widget",
3
3
  "author": "Tiledesk SRL",
4
- "version": "5.0.99",
4
+ "version": "5.0.100",
5
5
  "license": "MIT",
6
6
  "homepage": "https://www.tiledesk.com",
7
7
  "repository": {
@@ -407,6 +407,7 @@ export class ConversationComponent implements OnInit, AfterViewInit, OnChanges {
407
407
  // duration.hours < this.g.continueConversationBeforeTime? this.showContinueConversationButton = true: this.showContinueConversationButton = false
408
408
  callback(this.isConversationArchived)
409
409
  }else if(!conv) {
410
+ this.isConversationArchived = true
410
411
  callback(null);
411
412
  }
412
413
  })