aboutsummaryrefslogtreecommitdiff
path: root/weechat/net.c
diff options
context:
space:
mode:
authortomsmeding <tom.smeding@gmail.com>2017-04-16 21:11:05 +0200
committertomsmeding <tom.smeding@gmail.com>2017-04-16 21:11:05 +0200
commit0983e38e640d5168c31ddc6663057268afaefb4a (patch)
treece9496c064392c0f2802dbb823c1b61c9b14f8cd /weechat/net.c
parentb24fd5efe6a0029b5e26763066b7b305308b2ef2 (diff)
weechat: Don't beep on history messages
Diffstat (limited to 'weechat/net.c')
-rw-r--r--weechat/net.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/weechat/net.c b/weechat/net.c
index 656a7a5..1618130 100644
--- a/weechat/net.c
+++ b/weechat/net.c
@@ -287,7 +287,7 @@ void net_handle_recv(int fd,const char *msg){
i64 textlen=msglen-(textp-msg);
struct net_response res;
- res.type=NET_MESSAGE;
+ res.type=NET_HISTORY;
const char *endp;
res.timestamp=strtoll(stampp,(char**)&endp,10);
if(endp-stampp!=stamplen){