From 2b3e4f92907658a25e6797df4b6100564e9cfc1a Mon Sep 17 00:00:00 2001 From: Sundog Date: Mon, 16 Sep 2024 16:51:10 -0400 Subject: [PATCH] more edl work --- edl.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/edl.php b/edl.php index a756eed..0c9b7fa 100755 --- a/edl.php +++ b/edl.php @@ -5,8 +5,6 @@ $db = new SQLite3('netv-mam.sqlite'); // add edl to media item $jsonBody = file_get_contents("php://input"); $_REQUEST = json_decode($jsonBody, true); -error_log(print_r($_REQUEST, true)); -exit(); if (isset($_REQUEST['media_id']) && $_REQUEST['media_id'] !== "") { error_log(print_r($_REQUEST, true)); @@ -42,6 +40,7 @@ if (isset($_REQUEST['media_id']) && $_REQUEST['media_id'] !== "") { } } } else { + error_log("EDL: no media_id found!"); error_log(print_r($_REQUEST, true)); }