mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Refresh status when series is refreshed
This commit is contained in:
@@ -136,7 +136,7 @@ define(
|
|||||||
this.listenTo(this.model, 'sync', this._afterSeasonMonitored);
|
this.listenTo(this.model, 'sync', this._afterSeasonMonitored);
|
||||||
this.listenTo(this.episodeCollection, 'sync', this.render);
|
this.listenTo(this.episodeCollection, 'sync', this.render);
|
||||||
|
|
||||||
this.listenTo(this.fullEpisodeCollection, 'sync', this._updateEpisodeCollection);
|
this.listenTo(this.fullEpisodeCollection, 'sync', this._refreshEpsiodes);
|
||||||
},
|
},
|
||||||
|
|
||||||
onRender: function () {
|
onRender: function () {
|
||||||
@@ -300,6 +300,11 @@ define(
|
|||||||
this.episodeCollection.each(function (model) {
|
this.episodeCollection.each(function (model) {
|
||||||
model.episodeCollection = self.episodeCollection;
|
model.episodeCollection = self.episodeCollection;
|
||||||
});
|
});
|
||||||
|
},
|
||||||
|
|
||||||
|
_refreshEpsiodes: function () {
|
||||||
|
this._updateEpisodeCollection();
|
||||||
|
this.render();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|||||||
Reference in New Issue
Block a user