summaryrefslogtreecommitdiff
path: root/www/js/shows.js
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2016-07-17 13:19:47 (GMT)
committerChristian Pointner <equinox@helsinki.at>2016-07-17 13:27:26 (GMT)
commit4f0eecda565ea1060ea7d7d1077c54a74abc3acf (patch)
treeb2c303d5c753e88d76a3f96ce39d2df539e977b0 /www/js/shows.js
parente7071e58293c926553e9fbfcad5cc261a189aa6a (diff)
playout server live 5s in the future -> last-played-Datetime is off by 5s
Diffstat (limited to 'www/js/shows.js')
-rw-r--r--www/js/shows.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/js/shows.js b/www/js/shows.js
index 8f837ba..cf18531 100644
--- a/www/js/shows.js
+++ b/www/js/shows.js
@@ -348,7 +348,7 @@ Rdxport.ShowCartView.prototype.render = function() {
length = msToTimeString(Number(cut.length));
originDatetime = format_datetime(new Date(cut.originDatetime));
playCounter = cut.playCounter;
- lastPlayDatetime = format_datetime(new Date(cut.lastPlayDatetime));
+ lastPlayDatetime = format_datetime(cut.lastPlayDatetime);
}
this.$el = this.$el.empty()
.attr('id', 'show-cart-' + this.model.number)