From 0956281969123bf5b50780a75f8b3c9d74409ae1 Mon Sep 17 00:00:00 2001 From: Daniel Neto Date: Thu, 23 May 2024 10:23:37 -0300 Subject: [PATCH] if the user set his lives to be unlisted the scheduled meetings will also be unlisted --- plugin/Live/Live.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/Live/Live.php b/plugin/Live/Live.php index 696e951cf2ea..8f9e0423018b 100644 --- a/plugin/Live/Live.php +++ b/plugin/Live/Live.php @@ -314,7 +314,7 @@ public function getLiveApplicationArray() $app = self::getLiveApplicationModelArray($_array); $app['live_servers_id'] = $value['live_servers_id']; $app['key'] = $value['key']; - $app['isPrivate'] = false; + $app['isPrivate'] = self::isPrivate($value['key']); $app['method'] = 'Live::getLiveApplicationArray::Live_schedule'; $app['Live_schedule_timezone'] = date_default_timezone_get(); $app['scheduled_time_timezone'] = $value['timezone'];