about summary refs log tree commit diff stats
path: root/src/window_list.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-02-07 01:15:40 +0000
committerJames Booth <boothj5@gmail.com>2016-02-07 01:15:40 +0000
commit62b0cdd8fd3e811033f58d39a744d7f7eb973e3c (patch)
tree43f9acb0313f61980290fbf59f4dada7b9128ee9 /src/window_list.c
parentabc2f0de39e39638fc519ad38de55d5ce0d93f28 (diff)
downloadprofani-tty-62b0cdd8fd3e811033f58d39a744d7f7eb973e3c.tar.gz
Fix room notification reminders
Diffstat (limited to 'src/window_list.c')
-rw-r--r--src/window_list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window_list.c b/src/window_list.c
index b275fe63..7ba62e47 100644
--- a/src/window_list.c
+++ b/src/window_list.c
@@ -622,7 +622,7 @@ wins_do_notify_remind(void)
 
     while (curr) {
         ProfWin *window = curr->data;
-        if (win_notify(window)) {
+        if (win_notify_remind(window)) {
             g_list_free(values);
             return TRUE;
         }