mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Fix: Fixed an issue with the year automatically being added to new series when added to NzbDrone.
This commit is contained in:
parent
6375df058e
commit
dc4e45f72d
3 changed files with 4 additions and 2 deletions
|
@ -65,7 +65,7 @@ function bindSeriesAutoComplete(selector) {
|
|||
.data("autocomplete")._renderItem = function (ul, item) {
|
||||
return $("<li></li>")
|
||||
.data("item.autocomplete", item)
|
||||
.append("<a><div class=seriesLookupTitle>" + item.Title + "</div></a>")
|
||||
.append("<a><div class=seriesLookupTitle>" + item.DisplayedTitle + "</div></a>")
|
||||
.appendTo(ul);
|
||||
};
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue