Add missing semicolons

This commit is contained in:
Sam Whited 2016-08-26 14:11:50 -05:00
parent f2e369cfc0
commit c951f7f3e9
1 changed files with 3 additions and 3 deletions

View File

@ -115,7 +115,7 @@ function get_public_key(keyId)
return content;
end
return nil
return nil;
end
function provider.get_sasl_handler(session)
@ -126,7 +126,7 @@ function provider.get_sasl_handler(session)
if token == nil then
if allowEmptyToken then
return true
return true;
else
return false, "not-allowed", "token required";
end
@ -157,7 +157,7 @@ function provider.get_sasl_handler(session)
if result == true then
-- Binds room name to the session which is later checked on MUC join
session.jitsi_meet_room = room;
return true
return true;
else
return false, "not-allowed", msg
end