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:
parent
a15314c553
commit
415832d9e1
3 changed files with 11 additions and 3 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue