feat: start all kinds of things

This commit is contained in:
Andras Bacsai
2023-10-20 14:58:00 +02:00
parent a664174c02
commit 4855af7e57
2 changed files with 19 additions and 6 deletions

View File

@@ -463,7 +463,7 @@ function getResourceByUuid(string $uuid, ?int $teamId = null)
{
$resource = queryResourcesByUuid($uuid);
if (!is_null($teamId)) {
if ($resource->environment->project->team_id === $teamId) {
if (!is_null($resource) && $resource->environment->project->team_id === $teamId) {
return $resource;
}
return null;