Revision: 4289
Author: seba.wagner
Date: Sun Sep 25 02:57:13 2011
Log: Fix some nullpointer in Client
http://code.google.com/p/openmeetings/source/detail?r=4289
Modified:
/trunk/singlewebapp/WebContent/openmeetings/base/remote/baseVideoStream.lzx
=======================================
---
/trunk/singlewebapp/WebContent/openmeetings/base/remote/baseVideoStream.lzx
Tue Dec 29 12:56:35 2009
+++
/trunk/singlewebapp/WebContent/openmeetings/base/remote/baseVideoStream.lzx
Sun Sep 25 02:57:13 2011
@@ -233,6 +233,9 @@
-->
<method name="setVolume" args="volume">
if ($debug)
Debug.write(this.soundRef,volume,this.soundRef.getVolume());
+ if (this.soundRef == null) {
+ return;
+ }
this.soundRef.setVolume(volume);
</method>
--
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.