Open PeopleInside opened 1 year ago
An user on the forum reported he was not able to fetching email and was getting errors. An unexpected error occurred: Notice: Trying to access array offset on value of type null
An unexpected error occurred: Notice: Trying to access array offset on value of type null
Finally the user found how to edit the core code to resolve this issue: https://forums.uvdesk.com/post/4164
uvdeskprojectfolder/vendor/uvdesk/mailbox-component/Console/RefreshMailboxCommand.php
Changed this line:
$this->router->getContext()->setScheme((bool) $input->getOption('secure') ? 'https' : 'http');
To this:
$this->router->getContext()->setScheme('https');
Bug report
Title
An user on the forum reported he was not able to fetching email and was getting errors.
An unexpected error occurred: Notice: Trying to access array offset on value of type null
Finally the user found how to edit the core code to resolve this issue: https://forums.uvdesk.com/post/4164
uvdeskprojectfolder/vendor/uvdesk/mailbox-component/Console/RefreshMailboxCommand.php
Changed this line:
$this->router->getContext()->setScheme((bool) $input->getOption('secure') ? 'https' : 'http');
To this:
$this->router->getContext()->setScheme('https');