Fixed an issue.

This commit is contained in:
flash 2022-04-27 23:24:38 +00:00
parent 95610cb3ef
commit dbb67262e5

View file

@ -28,6 +28,12 @@ try {
return;
}
if($profileUser->isDeleted()) {
http_response_code(404);
echo 'User not found.';
return;
}
$notices = [];
$currentUser = User::getCurrent();