[MEDIA][EXCEPTIONS] Fix errors and deprecations

This commit is contained in:
Hugo Sales
2020-08-09 12:44:47 +00:00
committed by Hugo Sales
parent 08e5b313ce
commit 4128a5403d
11 changed files with 26 additions and 12 deletions

View File

@@ -62,7 +62,7 @@ class Controller extends AbstractController implements EventSubscriberInterface
$controller = $event->getController();
$request = $event->getRequest();
if (($avatar = DB::find('avatar', ['profile_id' => Common::profile()->getId()])) != null) {
if (($user = Common::user()) !== null && ($avatar = DB::find('avatar', ['profile_id' => $user->getProfile()->getId()])) != null) {
$avatar_filename = $avatar->getUrl();
} else {
$avatar_filename = '/public/assets/default_avatar.svg';