diff options
author | Jonathon Jongsma <jonathon.jongsma@collabora.co.uk> | 2009-10-20 23:19:45 -0500 |
---|---|---|
committer | Jonathon Jongsma <jonathon.jongsma@collabora.co.uk> | 2009-10-20 23:19:45 -0500 |
commit | 3430468358866f01bfa23d48d9e2d793a08127bc (patch) | |
tree | b92d0213f0644fd43eb4fcedc1c7629567ec067c | |
parent | 51ef7524e90caf044df39421d1f8755d6d330170 (diff) |
Lengthen MUC presence query period to 120spresence
Querying a large room (or several large rooms) could be very expensive, and it's
not really a time-critical thing, so lengthening the timeout between queries
seems to be a reasonable choice.
-rw-r--r-- | src/idle-muc-channel.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/idle-muc-channel.c b/src/idle-muc-channel.c index 35153a6..33399bc 100644 --- a/src/idle-muc-channel.c +++ b/src/idle-muc-channel.c @@ -43,7 +43,7 @@ #include "idle-text.h" /* timeout between presence queries, in seconds */ -#define PRESENCE_QUERY_TIMEOUT 60 +#define PRESENCE_QUERY_TIMEOUT 120 static void _channel_iface_init(gpointer, gpointer); static void _password_iface_init(gpointer, gpointer); |