diff options
author | Diogo Sousa <diogogsousa@gmail.com> | 2013-06-22 23:48:17 +0100 |
---|---|---|
committer | Diogo Sousa <diogogsousa@gmail.com> | 2013-06-28 16:04:32 +0100 |
commit | d1725e3f443f0133c113f417b6a594f79c6831e7 (patch) | |
tree | c6f720d97fd809f3a7b40139acff0f31d69d9931 /src/common/outbound.c | |
parent | 42da8fe3efb3d6bb7e3fb14169e7cc362e21921a (diff) |
server-time for all numerical messages.
Diffstat (limited to 'src/common/outbound.c')
-rw-r--r-- | src/common/outbound.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/outbound.c b/src/common/outbound.c index c32f81b4..d3e0ff56 100644 --- a/src/common/outbound.c +++ b/src/common/outbound.c @@ -2898,7 +2898,10 @@ cmd_notify (struct session *sess, char *tbuf, char *word[], char *word_eol[]) } } } else - notify_showlist (sess); + { + message_tags_data no_tags = MESSAGE_TAGS_DATA_INIT; + notify_showlist (sess, &no_tags); + } return TRUE; } |