From 4c783493bb66916d0e76ce2c220d50267dc07097 Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 30 Jan 2026 05:40:12 -0700 Subject: [PATCH] Fix Class 'Parsedown' not found --- app/call_recordings/resources/classes/call_recordings.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/call_recordings/resources/classes/call_recordings.php b/app/call_recordings/resources/classes/call_recordings.php index b593969484..e79ac3acef 100644 --- a/app/call_recordings/resources/classes/call_recordings.php +++ b/app/call_recordings/resources/classes/call_recordings.php @@ -243,6 +243,7 @@ class call_recordings { $transcript_summary = $params['transcript_summary'] ?? ''; //format the call recording transcript summary + require_once "resources/classes/parsedown.php"; $parsedown = new Parsedown(); $parsedown->setSafeMode(true); $parsedown->setMarkupEscaped(true);