mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-05 04:03:26 +00:00
Learned that I should not refer to env vars directly so I removed all references.
This commit is contained in:
@@ -45,7 +45,7 @@ class AutomationHandler
|
||||
*/
|
||||
public function reportJournals(RequestedReportOnJournals $event): bool
|
||||
{
|
||||
$sendReport = envNonEmpty('SEND_REPORT_JOURNALS', true);
|
||||
$sendReport = config('firefly.send_report_journals');
|
||||
|
||||
if (false === $sendReport) {
|
||||
return true; // @codeCoverageIgnore
|
||||
|
Reference in New Issue
Block a user