From 84f1dcf8bb386d474b5d0d8b3c28a0a0cbeb79af Mon Sep 17 00:00:00 2001 From: ciberfred <85504218+ciberfred@users.noreply.github.com> Date: Tue, 30 Sep 2025 19:20:36 +0200 Subject: [PATCH] Update Receivefax.php the phone nnumbe when we receive fax should be destination instead of source.... --- core/Program/Receivefax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/Program/Receivefax.php b/core/Program/Receivefax.php index 9dac5a3..d1562ec 100644 --- a/core/Program/Receivefax.php +++ b/core/Program/Receivefax.php @@ -100,7 +100,7 @@ protected function resource_load_account() public function scheme() { $inboundCall = new Inbound(); - $inboundCall->source = $this->aResource['account']->phone; + $inboundCall->destination = $this->aResource['account']->phone; $inboundCall->filter_flag = Dialplan::FILTER_COMMON; $answerCall = new Connect();