mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
This commit is contained in:
parent
e4a3e63c44
commit
72631eab8f
@ -151,7 +151,7 @@ module.exports = Marionette.ItemView.extend({
|
||||
start = model.get("physicalRelease");
|
||||
}
|
||||
var runtime = model.get('runtime');
|
||||
var end = moment(start).add('minutes', runtime).toISOString();
|
||||
var end = moment(start).add(runtime, 'minutes').toISOString();
|
||||
|
||||
var event = {
|
||||
title : seriesTitle,
|
||||
|
@ -13,7 +13,7 @@ module.exports = Marionette.ItemView.extend({
|
||||
initialize : function() {
|
||||
var start = this.model.get('inCinemas');
|
||||
var runtime = this.model.get('runtime');
|
||||
var end = moment(start).add('minutes', runtime);
|
||||
var end = moment(start).add(runtime, 'minutes');
|
||||
|
||||
this.model.set({
|
||||
end : end.toISOString()
|
||||
|
@ -12,7 +12,7 @@ module.exports = NzbDroneCell.extend({
|
||||
|
||||
if (dateStr) {
|
||||
var date = moment(dateStr);
|
||||
var diff = date.diff(moment().zone(date.zone()).startOf('day'), 'days', true);
|
||||
var diff = date.diff(moment().utcOffset(date.utcOffset()).startOf('day'), 'days', true);
|
||||
var result = '<span title="{0}">{1}</span>';
|
||||
var tooltip = date.format(UiSettings.longDateTime());
|
||||
var text;
|
||||
@ -31,4 +31,4 @@ module.exports = NzbDroneCell.extend({
|
||||
}
|
||||
return this;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
@ -20,7 +20,7 @@ var singleton = function() {
|
||||
var attr = _.extend({ name : name.toLocaleLowerCase() }, properties);
|
||||
var commandModel = new CommandModel(attr);
|
||||
|
||||
if (this._lastCommand.command && this._lastCommand.command.isSameCommand(attr) && moment().add('seconds', -5).isBefore(this._lastCommand.time)) {
|
||||
if (this._lastCommand.command && this._lastCommand.command.isSameCommand(attr) && moment().add(-5, 'seconds').isBefore(this._lastCommand.time)) {
|
||||
|
||||
Messenger.show({
|
||||
message : 'Please wait at least 5 seconds before running this command again',
|
||||
|
@ -214,8 +214,8 @@ module.exports = Marionette.Layout.extend({
|
||||
},
|
||||
|
||||
_shouldShowEpisodes : function() {
|
||||
var startDate = moment().add('month', -1);
|
||||
var endDate = moment().add('year', 1);
|
||||
var startDate = moment().add(-1, 'month');
|
||||
var endDate = moment().add(1, 'year');
|
||||
|
||||
return this.episodeCollection.some(function(episode) {
|
||||
var airDate = episode.get('airDateUtc');
|
||||
@ -298,4 +298,4 @@ module.exports = Marionette.Layout.extend({
|
||||
|
||||
vent.trigger(vent.Commands.OpenModalCommand, view);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
@ -214,8 +214,8 @@ module.exports = Marionette.Layout.extend({
|
||||
},
|
||||
|
||||
_shouldShowEpisodes : function() {
|
||||
var startDate = moment().add('month', -1);
|
||||
var endDate = moment().add('year', 1);
|
||||
var startDate = moment().add(-1, 'month');
|
||||
var endDate = moment().add(1, 'year');
|
||||
|
||||
return this.episodeCollection.some(function(episode) {
|
||||
var airDate = episode.get('airDateUtc');
|
||||
@ -298,4 +298,4 @@ module.exports = Marionette.Layout.extend({
|
||||
|
||||
vent.trigger(vent.Commands.OpenModalCommand, view);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
@ -40,7 +40,7 @@ module.exports = {
|
||||
return 'in ' + date.fromNow(true);
|
||||
}
|
||||
|
||||
if (date.isBefore(moment().add('years', -1))) {
|
||||
if (date.isBefore(moment().add(-1, 'years'))) {
|
||||
return date.format(UiSettings.get('shortDateFormat'));
|
||||
}
|
||||
|
||||
@ -68,4 +68,4 @@ module.exports = {
|
||||
|
||||
return unit + 's';
|
||||
}
|
||||
};
|
||||
};
|
||||
|
@ -9,7 +9,7 @@ module.exports = NzbDroneCell.extend({
|
||||
render : function() {
|
||||
var dateStr = this._getValue();
|
||||
var date = moment(dateStr);
|
||||
var diff = date.diff(moment().zone(date.zone()).startOf('day'), 'days', true);
|
||||
var diff = date.diff(moment().utcOffset(date.utcOffset()).startOf('day'), 'days', true);
|
||||
var result = '<span title="{0}">{1}</span>';
|
||||
var tooltip = date.format(UiSettings.longDateTime(true));
|
||||
var text;
|
||||
@ -28,4 +28,4 @@ module.exports = NzbDroneCell.extend({
|
||||
|
||||
return this;
|
||||
}
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user