From c8bc6cecdc97c09173b5358b4f582f5c6fe850ad Mon Sep 17 00:00:00 2001 From: Evgeniy Khramtsov Date: Fri, 15 Jan 2016 15:46:07 +0300 Subject: [PATCH] Fix records in mod_muc.hrl --- include/mod_muc.hrl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/mod_muc.hrl b/include/mod_muc.hrl index 0d3f7baf7..8d0c1b09d 100644 --- a/include/mod_muc.hrl +++ b/include/mod_muc.hrl @@ -24,9 +24,9 @@ opts = [] :: list() | '_'}). -record(muc_online_room, - {name_host = {<<"">>, <<"">>} :: {binary(), binary()} | {'_', '$1'} | '$1' | '_', - timestamp = p1_time_compat:timestamp() :: erlang:timestamp() | '_', - pid = self() :: pid() | '$1' | '$2' | '_'}). + {name_host = {<<"">>, <<"">>} :: {binary(), binary()} | '$1' | + {'_', binary()} | '_', + pid = self() :: pid() | '$2' | '_' | '$1'}). -record(muc_registered, {us_host = {{<<"">>, <<"">>}, <<"">>} :: {{binary(), binary()}, binary()} | '$1',