diff --git a/UI/Series/Details/SeasonLayout.js b/UI/Series/Details/SeasonLayout.js index 0ab75b514..8fc7464a1 100644 --- a/UI/Series/Details/SeasonLayout.js +++ b/UI/Series/Details/SeasonLayout.js @@ -78,11 +78,11 @@ define( episode.set({ hideSeriesLink: true, series: options.series }); }); - this.model.on('sync', function () { + this.listenTo(this.model, 'sync', function () { this._afterSeasonMonitored(); }, this); - this.episodeCollection.on('sync', function () { + this.listenTo(this.episodeCollection, 'sync', function () { this.render(); }, this); }, diff --git a/UI/Series/Details/SeasonMenu/ItemView.js b/UI/Series/Details/SeasonMenu/ItemView.js index 403600c61..2ffe52418 100644 --- a/UI/Series/Details/SeasonMenu/ItemView.js +++ b/UI/Series/Details/SeasonMenu/ItemView.js @@ -34,7 +34,7 @@ define( allFilesDownloaded: allDownloaded }); - this.model.on('sync', function () { + this.listenTo(this.model, 'sync', function () { this.render(); }, this); },