anear-js-api 0.3.23 → 0.3.24
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/lib/models/AnearEvent.js +2 -0
- package/package.json +1 -1
package/lib/models/AnearEvent.js
CHANGED
|
@@ -281,10 +281,12 @@ class AnearEvent extends JsonApiResource {
|
|
|
281
281
|
}
|
|
282
282
|
|
|
283
283
|
async transitionClosed() {
|
|
284
|
+
this.cancelParticipantTimers()
|
|
284
285
|
await this.transitionNextNext()
|
|
285
286
|
}
|
|
286
287
|
|
|
287
288
|
async transitionCanceled() {
|
|
289
|
+
this.cancelParticipantTimers()
|
|
288
290
|
await this.transitionEvent('cancel')
|
|
289
291
|
}
|
|
290
292
|
|