통합로그 api 로그 name 변경

This commit is contained in:
opacity@t-win.kr
2025-06-27 14:56:51 +09:00
parent 956ea7234c
commit 8fb1a248ce
6 changed files with 279 additions and 7 deletions

View File

@@ -1542,7 +1542,11 @@ const PlayerPanel = ({
}
// For fullscreen, the playlist is the primary source.
if (playListInfo && playListInfo.length > 0 && playListInfo[selectedIndex]?.showUrl) {
if (
playListInfo &&
playListInfo.length > 0 &&
playListInfo[selectedIndex]?.showUrl
) {
return playListInfo[selectedIndex]?.showUrl;
}
@@ -1550,7 +1554,7 @@ const PlayerPanel = ({
if (!panelInfo.modal && panelInfo.showUrl) {
return panelInfo.showUrl;
}
return playListInfo && playListInfo[selectedIndex]?.showUrl;
}, [panelInfo, playListInfo, selectedIndex, broadcast]);