Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit dd621e8

Browse files
committed
Fix sync of running frames
1 parent 2353641 commit dd621e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/models/baseFrame.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ class baseFrame {
8383
}
8484

8585
get stop() {
86-
return this.timezone ? moment(this._stop).tz(this.timezone) : (this._stop ? moment(this._stop) : false );
86+
return this.timezone ? this._stop ? moment(this._stop).tz(this.timezone) : false : (this._stop ? moment(this._stop) : false );
8787
}
8888

8989
/**

0 commit comments

Comments
 (0)