about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-04-08 01:17:22 +0100
committerJames Booth <boothj5@gmail.com>2016-04-08 01:17:22 +0100
commit699e08b2384eae00d0edb9df726ea6b7c7af5a48 (patch)
tree7d6bf9b85e8dd1c969d728f34ccaeeabf77f6fcd /src
parent93672eba9f625800406aaf89e43d43a4dbc58dde (diff)
downloadprofani-tty-699e08b2384eae00d0edb9df726ea6b7c7af5a48.tar.gz
Fixed timestamp for on_room_history_message
Diffstat (limited to 'src')
-rw-r--r--src/plugins/plugins.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/plugins.c b/src/plugins/plugins.c
index 32e1247e..73f3f873 100644
--- a/src/plugins/plugins.c
+++ b/src/plugins/plugins.c
@@ -347,7 +347,7 @@ plugins_on_room_history_message(const char *const room, const char *const nick,
     GSList *curr = plugins;
     while (curr) {
         ProfPlugin *plugin = curr->data;
-        plugin->on_room_history_message(plugin, room, nick, message, NULL);
+        plugin->on_room_history_message(plugin, room, nick, message, timestamp_str);
         curr = g_slist_next(curr);
     }