Merge pull request #10655 from inietov/fixes/trying_to_get_property_checkin_email_of_non-object_develop

Fixes ErrorException: Trying to get property 'checkin_email' of non-object for develop[sc-17568]
This commit is contained in:
snipe 2022-02-16 11:19:14 -07:00 committed by GitHub
commit b78f32e876
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -830,7 +830,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;
}
} }
/** /**