Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/39bb2ce80a77b8e92fc46228b4ab3fe7cf4f7387 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Refresh upcoming collection every hour

pull/43/head
Mark McDowall 12 years ago
parent e3d47cddaa
commit 39bb2ce80a

@ -2,17 +2,29 @@
define(
[
'underscore',
'marionette',
'Calendar/UpcomingCollection',
'Calendar/UpcomingItemView',
'Mixins/backbone.signalr.mixin'
], function (Marionette, UpcomingCollection, UpcomingItemView) {
], function (_, Marionette, UpcomingCollection, UpcomingItemView) {
return Marionette.CollectionView.extend({
itemView: UpcomingItemView,
initialize: function () {
this.collection = new UpcomingCollection().bindSignalR({ updateOnly: true });
this.collection.fetch();
this._fetchCollection = _.bind(this._fetchCollection, this);
this.timer = window.setInterval(this._fetchCollection, 60 * 60 * 1000);
},
onClose: function () {
window.clearInterval(this.timer);
},
_fetchCollection: function () {
this.collection.fetch();
}
});
});

Loading…
Cancel
Save