Skip to content

Commit

Permalink
if the user set his lives to be unlisted the scheduled meetings will …
Browse files Browse the repository at this point in the history
…also be unlisted
  • Loading branch information
Daniel Neto committed May 23, 2024
1 parent c32577d commit 0956281
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/Live/Live.php
Original file line number Diff line number Diff line change
Expand Up @@ -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'];
Expand Down

0 comments on commit 0956281

Please sign in to comment.