about summary refs log tree commit diff stats
path: root/src/ui/chatwin.c
diff options
context:
space:
mode:
authorMarcoPolo-PasTonMolo <marcopolopastonmolo@protonmail.com>2022-07-10 10:44:06 +0300
committerMarcoPolo-PasTonMolo <marcopolopastonmolo@protonmail.com>2022-07-10 11:17:35 +0300
commit85aaf40432d50a99c50ae8d1baa7c02ff5ae43ba (patch)
tree3cc4780ad08c598086e7e99e863593152afe4088 /src/ui/chatwin.c
parent47b3e528e2c13a63316fa7ad2c02d9b702741dea (diff)
downloadprofani-tty-85aaf40432d50a99c50ae8d1baa7c02ff5ae43ba.tar.gz
Have ability to scroll through history even without MAM
Diffstat (limited to 'src/ui/chatwin.c')
-rw-r--r--src/ui/chatwin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ui/chatwin.c b/src/ui/chatwin.c
index 0b2724d3..530739ae 100644
--- a/src/ui/chatwin.c
+++ b/src/ui/chatwin.c
@@ -519,7 +519,7 @@ static void
 _chatwin_history(ProfChatWin* chatwin, const char* const contact_barejid)
 {
     if (!chatwin->history_shown) {
-        GSList* history = log_database_get_previous_chat(contact_barejid, NULL, NULL, FALSE);
+        GSList* history = log_database_get_previous_chat(contact_barejid, NULL, NULL, FALSE, FALSE);
         GSList* curr = history;
 
         while (curr) {
@@ -547,7 +547,7 @@ chatwin_db_history(ProfChatWin* chatwin, char* start_time, char* end_time, gbool
         end_time = buffer_size(((ProfWin*)chatwin)->layout->buffer) == 0 ? NULL : g_date_time_format_iso8601(buffer_get_entry(((ProfWin*)chatwin)->layout->buffer, 0)->time);
     }
 
-    GSList* history = log_database_get_previous_chat(chatwin->barejid, start_time, end_time, flip);
+    GSList* history = log_database_get_previous_chat(chatwin->barejid, start_time, end_time, !flip, flip);
     gboolean has_items = g_slist_length(history) != 0;
     GSList* curr = history;