Skip to content

Commit

Permalink
Merge pull request #15954 from Godmartinz/null_fix-for-reminder-command
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe authored Dec 11, 2024
2 parents 5014a95 + 2e97b56 commit 6633948
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Console/Commands/SendAcceptanceReminder.php
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public function handle()
$locale = $acceptance->assignedTo?->locale;
$email = $acceptance->assignedTo?->email;
if(!$email){
$this->info($acceptance->assignedTo->present()->fullName().' has no email address.');
$this->info($acceptance->assignedTo?->present()->fullName().' has no email address.');
}
$item_count = $unacceptedAssetGroup->count();

Expand Down

0 comments on commit 6633948

Please sign in to comment.