Skip to content

Commit

Permalink
Fixing typos
Browse files Browse the repository at this point in the history
  • Loading branch information
kguptasangoma committed Nov 13, 2024
1 parent d4b925b commit 27e5de0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Voicemail.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -1605,7 +1605,7 @@ public function getMessagesByExtensionFolder($extension,$folder,$order,$orderby,
break;
}
if($scribeModuleStatus) {
$url = \FreePBX::Scribe()->getUcpTranscriptionUrl($aMsgs['messages'][$i]['origmailbox'],$aMsgs['messages'][$i]['msg_id'],'voicemail');
$url = $this->FreePBX->Scribe->getUcpTranscriptionUrl($aMsgs['messages'][$i]['origmailbox'],$aMsgs['messages'][$i]['msg_id'],'voicemail');
if($url) {
$aMsgs['messages'][$i]['converttotext'] = $url;
} else {
Expand Down
2 changes: 1 addition & 1 deletion ucp/Voicemail.class.php
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ public function getStaticSettings() {
"supportedHTML5" => implode(",", $this->UCP->FreePBX->Media->getSupportedHTML5Formats()),
"mailboxes" => $this->voicemails,
"extensions" => $this->extensions,
"isScribeEnabled" =>$this->UCP->FreePBX->Modules->checkStatus("scribe")
"isScribeEnabled" => ($this->UCP->FreePBX->Modules->checkStatus("scribe") && $this->UCP->FreePBX->Scribe->isLicensed())
);
}

Expand Down

0 comments on commit 27e5de0

Please sign in to comment.