From 0678c36b5890500f57936d811e6cc4786a10504a Mon Sep 17 00:00:00 2001 From: FusionPBX Date: Fri, 22 Apr 2022 19:47:09 -0600 Subject: [PATCH] Update the fax status Fax status may have reached retry limit and if so need to update the status to failed. --- app/fax_queue/resources/job/fax_send.php | 1 + 1 file changed, 1 insertion(+) diff --git a/app/fax_queue/resources/job/fax_send.php b/app/fax_queue/resources/job/fax_send.php index c618b968d8..cf78eaa177 100644 --- a/app/fax_queue/resources/job/fax_send.php +++ b/app/fax_queue/resources/job/fax_send.php @@ -447,6 +447,7 @@ //update the database to say status to trying and set the command $array['fax_queue'][0]['fax_queue_uuid'] = $fax_queue_uuid; $array['fax_queue'][0]['domain_uuid'] = $domain_uuid; + $array['fax_queue'][0]['fax_status'] = $fax_status; $array['fax_queue'][0]['fax_notify_sent'] = true; $array['fax_queue'][0]['fax_notify_date'] = 'now()';