diff --git a/app/resources/data/template.html b/app/resources/data/template.html
index 1d13404..932da6c 100644
--- a/app/resources/data/template.html
+++ b/app/resources/data/template.html
@@ -1021,10 +1021,11 @@ input {
function prevPage() {
if (currentPage > 1) {
currentPage--;
+ reachedBottom = false;
renderPage(currentPage);
}
}
-
+
function nextPage() {
const totalPages = Math.ceil(chatMessages.length / itemsPerPage);
if (currentPage < totalPages) {
diff --git a/requirements.txt b/requirements.txt
index 485931a..2a8ccd7 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -17,5 +17,4 @@ soupsieve==2.5
lz4==4.3.2
pilk==0.2.4
python-docx==1.1.0
-docxcompose==1.4.0
-eyed3==0.9.7
\ No newline at end of file
+docxcompose==1.4.0
\ No newline at end of file