1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-12-04 14:46:46 -05:00

Fixed timestamp for on_room_history_message

This commit is contained in:
James Booth 2016-04-08 01:17:22 +01:00
parent 93672eba9f
commit 699e08b238

View File

@ -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);
}