Merge pull request #10654 from inietov/fixes/trying_to_get_property_checkin_email_of_non-object

Fixes  ErrorException: Trying to get property 'checkin_email' of non-object [sc-17568]
This commit is contained in:
snipe 2022-02-10 12:23:50 -08:00 committed by GitHub
commit ed931ef0cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -816,7 +816,9 @@ class Asset extends Depreciable
*/ */
public function checkin_email() public function checkin_email()
{ {
return $this->model->category->checkin_email; if (($this->model) && ($this->model->category)) {
return $this->model->category->checkin_email;
}
} }
/** /**