mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 01:42:32 +00:00
Learned that I should not refer to env vars directly so I removed all references.
This commit is contained in:
@@ -70,7 +70,7 @@ class MailError extends Job implements ShouldQueue
|
||||
*/
|
||||
public function handle()
|
||||
{
|
||||
$email = env('SITE_OWNER');
|
||||
$email = config('firefly.site_owner');
|
||||
$args = $this->exception;
|
||||
$args['loggedIn'] = $this->userData['id'] > 0;
|
||||
$args['user'] = $this->userData;
|
||||
|
||||
Reference in New Issue
Block a user