Added a bug marker to ebook reader, made an optimization to continue-point api, Fixed a bulk selection bug where storyline tab wasn't properly selecting. (#997)

This commit is contained in:
Joseph Milazzo 2022-01-27 06:55:35 -08:00 committed by GitHub
parent a15314c553
commit 415832d9e1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 3 deletions

View file

@ -317,6 +317,8 @@ public class ReaderService : IReaderService
.OrderBy(c => float.Parse(c.Number))
.ToList();
var currentlyReadingChapter = nonSpecialChapters.FirstOrDefault(chapter => chapter.PagesRead < chapter.Pages);
@ -330,8 +332,7 @@ public class ReaderService : IReaderService
{
if (chapter.PagesRead < chapter.Pages)
{
currentlyReadingChapter = chapter;
break;
return chapter;
}
}
}