From ea195afc87e80abf62bec1ad8110c9611dff93e4 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Thu, 25 Jul 2013 22:19:50 -0700 Subject: [PATCH] Use airDateUtc not airDate --- UI/Cells/EpisodeStatusCell.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/UI/Cells/EpisodeStatusCell.js b/UI/Cells/EpisodeStatusCell.js index 812802bfb..0fad9247c 100644 --- a/UI/Cells/EpisodeStatusCell.js +++ b/UI/Cells/EpisodeStatusCell.js @@ -17,7 +17,7 @@ define( var icon; var tooltip; - var hasAired = Moment(this.model.get('airDate')).isBefore(Moment()); + var hasAired = Moment(this.model.get('airDateUtc')).isBefore(Moment()); var hasFile = this.model.get('hasFile'); if (hasFile) { @@ -34,7 +34,7 @@ define( return this; } else { - if (!this.model.get('airDate')) { + if (!this.model.get('airDateUtc')) { icon = 'icon-question-sign'; tooltip = 'TBA'; }