fixed return value to always return array

git-svn-id: http://svn.berlios.de/svnroot/repos/sems/trunk@909 8eb893ce-cfd4-0310-b710-fb5ebe64c474
sayer/1.4-spce2.6
Stefan Sayer 19 years ago
parent 1f2b1d5272
commit 1623532145

@ -571,7 +571,9 @@ void WebConferenceFactory::listRooms(const AmArg& args, AmArg& ret) {
if ((!MasterPassword.length()) ||
pwd != MasterPassword) {
ret.push(407);
ret.push("Wrong Master Password.\n");
AmArg res;
res.push("Wrong Master Password.\n");
ret.push(res);
return;
}

Loading…
Cancel
Save