Fix wrong reader opening (#4294)

This commit is contained in:
Fesaa 2025-12-19 23:38:13 +01:00 committed by GitHub
parent 41b443261f
commit 81b7108f5d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -550,7 +550,7 @@ public class ReaderService(IUnitOfWork unitOfWork, ILogger<ReaderService> logger
return currentlyReading;
}
var volumes = (await unitOfWork.VolumeRepository.GetVolumesDtoAsync(seriesId, userId)).ToList();
var volumes = (await unitOfWork.VolumeRepository.GetVolumesDtoAsync(seriesId, userId, VolumeIncludes.Files)).ToList();
var allChapters = volumes
.OrderBy(v => v.MinNumber, _chapterSortComparerDefaultLast)