Skip to content

Commit

Permalink
Omit path for local methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredbuehler committed Aug 5, 2024
1 parent ad4f126 commit 54f0c0c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Helper/ParsingHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public function removeTaskData(string $message) : string
*/
public function verifyData(&$updates, &$task)
{
$allmeta = $this->helper->parsing->getAllMeta($task['id']); // With prefix
$allmeta = $this->getAllMeta($task['id']); // With prefix
$project_id = $task['project_id'];
$veto_keys = array();

Expand Down Expand Up @@ -131,11 +131,11 @@ public function parseAllData(string $message, $task_id) : array
{
$updates = array();

$parsed_taskdata = $this->helper->parsing->parseData($message);
$parsed_metadata = $this->helper->parsing->parseData($message, '$@', '@$');
$parsed_taskdata = $this->parseData($message);
$parsed_metadata = $this->parseData($message, '$@', '@$');

if ($this->configModel->get('mailmagik_parsing_remove_data', '1') == 1) {
$updates['description'] = $this->helper->parsing->removeTaskData($message);
$updates['description'] = $this->removeTaskData($message);
} else {
$updates['description'] = $message;
}
Expand Down

0 comments on commit 54f0c0c

Please sign in to comment.