diff options
author | James Booth <boothj5@gmail.com> | 2016-04-08 01:17:22 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-04-08 01:17:22 +0100 |
commit | 699e08b2384eae00d0edb9df726ea6b7c7af5a48 (patch) | |
tree | 7d6bf9b85e8dd1c969d728f34ccaeeabf77f6fcd | |
parent | 93672eba9f625800406aaf89e43d43a4dbc58dde (diff) | |
download | profani-tty-699e08b2384eae00d0edb9df726ea6b7c7af5a48.tar.gz |
Fixed timestamp for on_room_history_message
-rw-r--r-- | src/plugins/plugins.c | 2 |
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); } |