From 31ad5286de29e6da738e5121a91c8f35c7cf5370 Mon Sep 17 00:00:00 2001 From: mmcwilliams Date: Tue, 19 May 2020 17:06:36 -0400 Subject: [PATCH] Set sequence state to false when done. --- src/sequence/index.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/sequence/index.ts b/src/sequence/index.ts index ecb47f0..c2bef0e 100644 --- a/src/sequence/index.ts +++ b/src/sequence/index.ts @@ -105,6 +105,8 @@ export class Sequence { this.count = 0 this.delay = 0 + this.intval._state.sequence = false; + log.info('_stop', { id : this.id, stopped : true }) } }