Update player.php

This commit is contained in:
jb-alvarado 2019-05-14 10:56:17 +02:00 committed by GitHub
parent d15e3dabcb
commit 3124702997

View File

@ -82,8 +82,8 @@ if(!empty($_GET['track'])) {
}
// start / stop playout
if(!empty($_GET['playout'])) {
$state = $_GET['playout'];
if(!empty($_POST['playout'])) {
$state = $_POST['playout'];
if ($state === "start") {
$out = shell_exec("./sh/playout.sh start");