mirror of
https://github.com/Radarr/Radarr
synced 2024-12-26 01:38:24 +00:00
fixed where year could show up twice in series search.
This commit is contained in:
parent
b393c11b27
commit
bf50c5989a
2 changed files with 9 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
||||||
<div class="result-item row">
|
<div class="result-item row">
|
||||||
<div>
|
<div>
|
||||||
<a href="http://thetvdb.com/?tab=series&id={{id}}" target="_blank" class="icon-info-sign"></a>{{seriesName}} ({{seriesYear}})
|
<a href="http://thetvdb.com/?tab=series&id={{id}}" target="_blank" class="icon-info-sign"></a>{{seriesName}} {{seriesYear}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -2,8 +2,14 @@
|
||||||
NzbDrone.AddSeries.SearchResultModel = Backbone.Model.extend({
|
NzbDrone.AddSeries.SearchResultModel = Backbone.Model.extend({
|
||||||
mutators: {
|
mutators: {
|
||||||
seriesYear: function () {
|
seriesYear: function () {
|
||||||
var date = Date.utc.create(this.get('firstAired'));
|
var date = Date.utc.create(this.get('firstAired')).format('({yyyy})');
|
||||||
return date.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;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue