From: Badlop Date: Thu, 21 May 2015 10:00:41 +0000 (+0200) Subject: Fix dialyzer warning in mod_muc_admin:206 X-Git-Tag: 15.06~47 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3b24923458397fa19361490c25d1a6b84013421e;p=ejabberd Fix dialyzer warning in mod_muc_admin:206 --- diff --git a/include/mod_muc_room.hrl b/include/mod_muc_room.hrl index 6f170269d..5fabbb9e8 100644 --- a/include/mod_muc_room.hrl +++ b/include/mod_muc_room.hrl @@ -110,8 +110,8 @@ -record(muc_online_users, {us = {<<>>, <<>>} :: {binary(), binary()}, resource = <<>> :: binary() | '_', - room = <<>> :: binary() | '_', - host = <<>> :: binary() | '_'}). + room = <<>> :: binary() | '_' | '$1', + host = <<>> :: binary() | '_' | '$2'}). -type muc_online_users() :: #muc_online_users{}.