mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-26 22:05:12 +02:00
Merge pull request #1398 from lkiesow/dont-list-book-twice
Don't list book twice in continue series
This commit is contained in:
commit
702ee3d350
1 changed files with 6 additions and 4 deletions
|
@ -672,6 +672,7 @@ module.exports = {
|
||||||
}
|
}
|
||||||
|
|
||||||
const indexToPut = categoryMap.continueSeries.items.findIndex(i => i.prevBookInProgressLastUpdate < bookForContinueSeries.prevBookInProgressLastUpdate)
|
const indexToPut = categoryMap.continueSeries.items.findIndex(i => i.prevBookInProgressLastUpdate < bookForContinueSeries.prevBookInProgressLastUpdate)
|
||||||
|
if (!categoryMap.continueSeries.items.find(book => book.id === bookForContinueSeries.id)) {
|
||||||
if (indexToPut >= 0) {
|
if (indexToPut >= 0) {
|
||||||
categoryMap.continueSeries.items.splice(indexToPut, 0, bookForContinueSeries)
|
categoryMap.continueSeries.items.splice(indexToPut, 0, bookForContinueSeries)
|
||||||
} else if (categoryMap.continueSeries.items.length < 10) { // Max 10 books
|
} else if (categoryMap.continueSeries.items.length < 10) { // Max 10 books
|
||||||
|
@ -680,6 +681,7 @@ module.exports = {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// Sort series books by sequence
|
// Sort series books by sequence
|
||||||
if (categoryMap.newestSeries.items.length) {
|
if (categoryMap.newestSeries.items.length) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue