Going to Series should force a reload of drone after an update

This commit is contained in:
Mark McDowall 2014-05-15 22:07:46 -07:00
parent 5c2f77339d
commit f806fa747e
1 changed files with 3 additions and 0 deletions

View File

@ -10,11 +10,14 @@ define(
return NzbDroneController.extend({ return NzbDroneController.extend({
_originalInit: NzbDroneController.prototype.initialize,
initialize: function () { initialize: function () {
this.route('', this.series); this.route('', this.series);
this.route('series', this.series); this.route('series', this.series);
this.route('series/:query', this.seriesDetails); this.route('series/:query', this.seriesDetails);
this._originalInit.apply(this, arguments);
}, },
series: function () { series: function () {