|
@@ -78,9 +78,7 @@ public class ReaderPresenter extends BasePresenter<ReaderActivity> {
|
|
|
if (currentPage != 0)
|
|
|
view.setSelectedPage(currentPage);
|
|
|
},
|
|
|
- (view, error) -> {
|
|
|
- view.onChapterError();
|
|
|
- });
|
|
|
+ (view, error) -> view.onChapterError());
|
|
|
|
|
|
restartableReplay(GET_PAGE_IMAGES,
|
|
|
() -> getPageImagesObservable()
|
|
@@ -104,10 +102,8 @@ public class ReaderPresenter extends BasePresenter<ReaderActivity> {
|
|
|
@Override
|
|
|
protected void onDestroy() {
|
|
|
unregisterForEvents();
|
|
|
- if (pageList != null && isChapterFinished()) {
|
|
|
- updateMangaSyncLastChapterRead();
|
|
|
- }
|
|
|
onChapterLeft();
|
|
|
+ updateMangaSyncLastChapterRead();
|
|
|
super.onDestroy();
|
|
|
}
|
|
|
|
|
@@ -241,6 +237,9 @@ public class ReaderPresenter extends BasePresenter<ReaderActivity> {
|
|
|
}
|
|
|
|
|
|
private void updateMangaSyncLastChapterRead() {
|
|
|
+ if (pageList == null)
|
|
|
+ return;
|
|
|
+
|
|
|
db.getMangaSync(manga).createObservable()
|
|
|
.take(1)
|
|
|
.flatMap(Observable::from)
|
|
@@ -249,15 +248,21 @@ public class ReaderPresenter extends BasePresenter<ReaderActivity> {
|
|
|
if (!service.isLogged())
|
|
|
return;
|
|
|
|
|
|
- int lastChapterReadLocal = (int) Math.floor(chapter.chapter_number);
|
|
|
- int lastChapterReadRemote = mangaSync.last_chapter_read;
|
|
|
+ int lastChapterReadLocal = 0;
|
|
|
+ // If the current chapter has been read, we check with this one
|
|
|
+ if (chapter.read)
|
|
|
+ lastChapterReadLocal = (int) Math.floor(chapter.chapter_number);
|
|
|
+ // If not, we check if the previous chapter has been read
|
|
|
+ else if (previousChapter != null && previousChapter.read)
|
|
|
+ lastChapterReadLocal = (int) Math.floor(previousChapter.chapter_number);
|
|
|
|
|
|
- if (lastChapterReadLocal > lastChapterReadRemote) {
|
|
|
+ if (lastChapterReadLocal > mangaSync.last_chapter_read) {
|
|
|
mangaSync.last_chapter_read = lastChapterReadLocal;
|
|
|
UpdateMangaSyncService.start(getContext(), mangaSync);
|
|
|
}
|
|
|
})
|
|
|
- .subscribe();
|
|
|
+ .subscribe(next -> {},
|
|
|
+ error -> Timber.e(error.getCause(), error.getMessage()));
|
|
|
}
|
|
|
|
|
|
public void setCurrentPage(int currentPage) {
|