Revision: 2813
Author: seba.wagner
Date: Wed Jan 20 13:09:41 2010
Log: Fix Exception in Logging during the Login
http://code.google.com/p/openmeetings/source/detail?r=2813
Modified:
/trunk/singlewebapp/src/app/org/openmeetings/app/remote/MainService.java
=======================================
---
/trunk/singlewebapp/src/app/org/openmeetings/app/remote/MainService.java
Mon Jan 18 11:06:41 2010
+++
/trunk/singlewebapp/src/app/org/openmeetings/app/remote/MainService.java
Wed Jan 20 13:09:41 2010
@@ -307,7 +307,7 @@
for (IConnection cons : conset) {
if (cons != null) {
RoomClient rcl =
this.clientListManager.getClientByStreamId(cons.getClient().getId());
- if (rcl.getIsScreenClient() != null && rcl.getIsScreenClient())
{
+ if (rcl != null && rcl.getIsScreenClient() != null &&
rcl.getIsScreenClient()) {
//continue;
} else {
if (cons
instanceof IServiceCapableConnection) {
--
You received this message because you are subscribed to the Google Groups
"OpenMeetings developers" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/openmeetings-dev?hl=en.