Showing
1 changed file
with
1 additions
and
1 deletions
@@ -185,7 +185,7 @@ class RoomController extends BaseController | @@ -185,7 +185,7 @@ class RoomController extends BaseController | ||
185 | ->select('a.room_id,a.title,a.living,a.secret,b.channel_id,b.upstream_address') | 185 | ->select('a.room_id,a.title,a.living,a.secret,b.channel_id,b.upstream_address') |
186 | ->from('tbl_room a') | 186 | ->from('tbl_room a') |
187 | ->leftJoin('tbl_room_qchannel b', 'a.room_id=b.room_id') | 187 | ->leftJoin('tbl_room_qchannel b', 'a.room_id=b.room_id') |
188 | - ->where(['a.living' => 0]) | 188 | + ->where(['a.living' => [0,2]]) |
189 | ->all(); | 189 | ->all(); |
190 | if ($result) { | 190 | if ($result) { |
191 | foreach($result as $flow){ | 191 | foreach($result as $flow){ |
-
Please register or login to post a comment