diff options
author | Maxim Ignatenko <gelraen.ua@gmail.com> | 2011-09-21 10:25:32 +0300 |
---|---|---|
committer | Maxim Ignatenko <gelraen.ua@gmail.com> | 2011-09-26 11:16:29 +0300 |
commit | 499b884c67feb937a90fcb625c4273d4ea8ffb21 (patch) | |
tree | 8496dd0a9d1e2bc83c8d5ababe00655c12d1efcb /src/mod_muc/mod_muc_room.hrl | |
parent | Fix voice request/approvement detection and extract_jid_from_voice_approvement/1 (diff) |
Use treap for keeping last voice request timestamps
Diffstat (limited to 'src/mod_muc/mod_muc_room.hrl')
-rw-r--r-- | src/mod_muc/mod_muc_room.hrl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mod_muc/mod_muc_room.hrl b/src/mod_muc/mod_muc_room.hrl index edfa3f410..b0cbc43c2 100644 --- a/src/mod_muc/mod_muc_room.hrl +++ b/src/mod_muc/mod_muc_room.hrl @@ -71,7 +71,7 @@ jid, config = #config{}, users = ?DICT:new(), - last_voice_request_time = ?DICT:new(), + last_voice_request_time = treap:empty(), robots = ?DICT:new(), nicks = ?DICT:new(), affiliations = ?DICT:new(), |