Removed useless check

This commit is contained in:
Waqas Hussain 2008-11-22 22:37:44 +05:00
parent 3b1d2b2963
commit d2db971613

View file

@ -17,10 +17,8 @@ function bare(jid)
local node, host = split(jid);
if node and host then
return node.."@"..host;
elseif host then
return host;
end
return nil;
return host;
end
return _M;