- fix to allo dashes in the externalUserID passed from the API

This commit is contained in:
Richard Alam 2013-05-19 21:06:25 +00:00
parent 9b27343347
commit 95e0659e9c

View File

@ -109,7 +109,7 @@ package org.bigbluebutton.modules.users.business
trace("***************** Voice user joining [" + cidName + "]"); trace("***************** Voice user joining [" + cidName + "]");
if (cidName) { if (cidName) {
var pattern:RegExp = /([A-Za-z0-9]+)-(.*)$/; var pattern:RegExp = /([A-Za-z0-9\-]+)-(.*)$/;
var result:Object = pattern.exec(cidName); var result:Object = pattern.exec(cidName);
if (result != null) { if (result != null) {