diff --git a/resources/qml/TimelineView.qml b/resources/qml/TimelineView.qml
index 3651a6f17d8e2b06f612943e674b313d52eede8b..dc1dda25b91a5aaa255acd59696c9ecd54e3daaa 100644
--- a/resources/qml/TimelineView.qml
+++ b/resources/qml/TimelineView.qml
@@ -93,7 +93,7 @@ Page {
 
 		BusyIndicator {
 			anchors.centerIn: parent
-            running: timelineManager.isInitialSync || chat.model.paginationInProgress
+            running: timelineManager.isInitialSync
 			height: 200
 			width: 200
 			z: 3
@@ -251,6 +251,13 @@ Page {
 				}
 			}
 
+            footer:  BusyIndicator {
+                anchors.horizontalCenter: parent.horizontalCenter
+                running: chat.model && chat.model.paginationInProgress
+                height: 50
+                width: 50
+                z: 3
+            }
 		}
 
 		Rectangle {