mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-09 23:24:06 -08:00
Check for > 0 expected assets
This commit is contained in:
parent
79555f5647
commit
1a29d4f60f
|
@ -61,7 +61,7 @@ class SendExpectedCheckinAlerts extends Command
|
|||
// Send a rollup to the admin, if settings dictate
|
||||
$recipient = new \App\Models\Recipients\AlertRecipient();
|
||||
|
||||
if ($settings->alert_email!='') {
|
||||
if (($assets) && ($assets->count() > 0) && ($settings->alert_email!='')) {
|
||||
$recipient->notify(new ExpectedCheckinAdminNotification($assets));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue