This commit is contained in:
Aria Moradi
2021-10-31 23:47:24 +03:30
parent c15ee7ab66
commit b6cf4a003e

View File

@@ -158,13 +158,13 @@ export default function Reader() {
formData.append('read', 'true'); formData.append('read', 'true');
client.patch(`/api/v1/manga/${manga.id}/chapter/${chapter.index}`, formData); client.patch(`/api/v1/manga/${manga.id}/chapter/${chapter.index}`, formData);
history.push(`/manga/${manga.id}/chapter/${chapter.index + 1}`); history.replace(`/manga/${manga.id}/chapter/${chapter.index + 1}`);
} }
}; };
const prevChapter = () => { const prevChapter = () => {
if (chapter.index > 1) { if (chapter.index > 1) {
history.push(`/manga/${manga.id}/chapter/${chapter.index - 1}`); history.replace(`/manga/${manga.id}/chapter/${chapter.index - 1}`);
} }
}; };