Skip to content

Commit

Permalink
Merge branch 'master' of ssh://github.com/LiveHelperChat/livehelperchat
Browse files Browse the repository at this point in the history
  • Loading branch information
remdex committed Oct 28, 2022
2 parents d76c2e3 + 163da56 commit 0083977
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,8 @@ public static function makeRequest($host, $methodSettings, $paramsCustomer)
'{{media}}' => json_encode($media),
'{{file_body}}' => $file_body,
'{{file_url}}' => $file_url,
'{{file_name}}' => $file_name
'{{file_name}}' => $file_name,
'{{timestamp}}' => time()
);

$replaceVariables = array_merge($replaceVariables, $dynamicReplaceVariables);
Expand Down Expand Up @@ -532,7 +533,8 @@ public static function makeRequest($host, $methodSettings, $paramsCustomer)
'{{media}}' => json_encode($media),
'{{file_body}}' => json_encode($file_body),
'{{file_url}}' => json_encode($file_url),
'{{file_name}}' =>json_encode($file_name)
'{{file_name}}' =>json_encode($file_name),
'{{timestamp}}' => time()
);

foreach ($dynamicReplaceVariables as $keyDynamic => $valueDynamic) {
Expand Down

0 comments on commit 0083977

Please sign in to comment.