fix: #8538, go to first unread instead of last read

This commit is contained in:
Barış Soner Uşaklı
2020-07-31 10:34:10 -04:00
parent 029f477434
commit 519e665939
2 changed files with 5 additions and 3 deletions

View File

@@ -136,7 +136,7 @@ define('forum/topic', [
timeout: 0,
type: 'info',
clickfn: function () {
navigator.scrollToIndex(parseInt(bookmark - 1, 10), true);
navigator.scrollToIndex(parseInt(bookmark, 10), true);
},
closefn: function () {
storage.removeItem('topic:' + tid + ':bookmark');
@@ -259,7 +259,7 @@ define('forum/topic', [
if (err) {
return app.alertError(err.message);
}
ajaxify.data.bookmark = index;
ajaxify.data.bookmark = index + 1;
});
} else {
storage.setItem(bookmarkKey, index);