This is an automated email from the ASF dual-hosted git repository.

solomax pushed a commit to branch 4.0.x
in repository https://gitbox.apache.org/repos/asf/openmeetings.git


The following commit(s) were added to refs/heads/4.0.x by this push:
     new 369557b  [OPENMEETINGS-1836] condition is fixed
369557b is described below

commit 369557b3575bbf7296aa2102695bb010d03fe58a
Author: Maxim Solodovnik <solomax...@gmail.com>
AuthorDate: Wed Mar 7 22:10:42 2018 +0700

    [OPENMEETINGS-1836] condition is fixed
---
 .../main/java/org/apache/openmeetings/web/room/sidebar/RoomSidebar.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/RoomSidebar.java
 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/RoomSidebar.java
index 4f0500e..32e90a7 100644
--- 
a/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/RoomSidebar.java
+++ 
b/openmeetings-web/src/main/java/org/apache/openmeetings/web/room/sidebar/RoomSidebar.java
@@ -294,7 +294,7 @@ public class RoomSidebar extends Panel {
        }
 
        public void update(IPartialPageRequestHandler handler) {
-               if (room.getRoom() == null || room.getClient() != null) {
+               if (room.getRoom() == null || room.getClient() == null) {
                        return;
                }
                updateShowFiles(handler);

-- 
To stop receiving notification emails like this one, please contact
solo...@apache.org.

Reply via email to