mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-16 11:37:58 +02:00
16 lines
486 B
JavaScript
16 lines
486 B
JavaScript
/// <reference path="../app.js" />
|
|
NzbDrone.AddSeries.SearchResultModel = Backbone.Model.extend({
|
|
mutators: {
|
|
seriesYear: function () {
|
|
var date = Date.utc.create(this.get('firstAired')).format('({yyyy})');
|
|
|
|
//don't append year, if the series name already has the name appended.
|
|
if (this.get('seriesName').endsWith(date)) {
|
|
return "";
|
|
} else {
|
|
return date;
|
|
}
|
|
}
|
|
}
|
|
});
|