diff --git a/bigbluebutton-web/src/java/org/bigbluebutton/api/domain/Meeting.java b/bigbluebutton-web/src/java/org/bigbluebutton/api/domain/Meeting.java index f1d6c5c53a..b17222c173 100644 --- a/bigbluebutton-web/src/java/org/bigbluebutton/api/domain/Meeting.java +++ b/bigbluebutton-web/src/java/org/bigbluebutton/api/domain/Meeting.java @@ -280,7 +280,7 @@ public class Meeting { } public boolean hasExpired(int expiry) { - return (hasStarted() && userHasJoined && isEmpty() && hasBeenEmptyFor(expiry) && !meetingInfinite()); + return (hasStarted() && userHasJoined && isEmpty() && hasBeenEmptyFor(expiry)); } public boolean hasExceededDuration() {