mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-31 04:00:18 -07:00
parent
a9d66133a6
commit
c795951857
1 changed files with 4 additions and 2 deletions
|
@ -165,14 +165,16 @@ export const defaultState = {
|
||||||
|
|
||||||
nextAlbum: function(item) {
|
nextAlbum: function(item) {
|
||||||
if (item.nextAlbum) {
|
if (item.nextAlbum) {
|
||||||
return item.nextAlbum.title;
|
return item.nextAlbum.releaseDate;
|
||||||
}
|
}
|
||||||
|
return '1/1/1000';
|
||||||
},
|
},
|
||||||
|
|
||||||
lastAlbum: function(item) {
|
lastAlbum: function(item) {
|
||||||
if (item.lastAlbum) {
|
if (item.lastAlbum) {
|
||||||
return item.lastAlbum.title;
|
return item.lastAlbum.releaseDate;
|
||||||
}
|
}
|
||||||
|
return '1/1/1000';
|
||||||
},
|
},
|
||||||
|
|
||||||
albumCount: function(item) {
|
albumCount: function(item) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue