From d783caf3880ca6f685600bb974d2e29cee7ef73d Mon Sep 17 00:00:00 2001 From: Daniel Neto Date: Thu, 6 Feb 2025 15:14:09 -0300 Subject: [PATCH] Update --- plugin/Live/Live.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugin/Live/Live.php b/plugin/Live/Live.php index 9aabf744963a..caa92b9a92f9 100644 --- a/plugin/Live/Live.php +++ b/plugin/Live/Live.php @@ -2326,7 +2326,7 @@ public static function _getStats($live_servers_id = 0, $force_recreate = false) $app['method'] = 'Live::_getStats'; $app['titleSet'] = $titleSet . ' => ' . $app['title']; //var_dump($app['isPrivate'],$app['key']);exit; - if (!self::isApplicationListed($app['key']) || ($VideoPlaylistSchedulerIsEnabled && VideoPlaylistScheduler::iskeyShowScheduled($app['key']))) { + if (!self::isApplicationListed($app['key']) || ($VideoPlaylistSchedulerIsEnabled && VideoPlaylistScheduler::iskeyShowScheduledHidden($app['key']))) { $obj->hidden_applications[] = $app; } else { $obj->applications[] = $app; @@ -3761,7 +3761,7 @@ public static function getValidNotOnlineLiveIndex($key, $live_index) if (empty($live_index)) { return 1; } - if (AVideoPlugin::isEnabled('VideoPlaylistScheduler') && VideoPlaylistScheduler::iskeyShowScheduled("$key-$live_index")) { + if (AVideoPlugin::isEnabled('VideoPlaylistScheduler') && VideoPlaylistScheduler::iskeyShowScheduledHidden("$key-$live_index")) { // it is a VideoPlaylistScheduler do not change it return $live_index; }