mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 13:41:51 +02:00
Fix when user is null
This commit is contained in:
parent
e72715f1ab
commit
829391e1a3
1 changed files with 2 additions and 2 deletions
|
@ -39,7 +39,7 @@ class ComposeType extends AbstractType {
|
|||
/**@var $user \App\SocialEntity\MastodonAccount**/
|
||||
$user = $options['user'];
|
||||
|
||||
if( $user->getDefaultSensitivity()) {
|
||||
if( $user && $user->getDefaultSensitivity()) {
|
||||
$checkbox = [
|
||||
'required' => false,
|
||||
'attr' => ['checked' => 'checked'],
|
||||
|
@ -58,7 +58,7 @@ class ComposeType extends AbstractType {
|
|||
'status.visibility.private' => 'private',
|
||||
'status.visibility.direct' => 'direct',
|
||||
],
|
||||
'data' => $user->getDefaultVisibility(),
|
||||
'data' => $user?$user->getDefaultVisibility():'public',
|
||||
]);
|
||||
$builder->add('timeZone', TimezoneType::class);
|
||||
$builder->add('sensitive', CheckboxType::class, $checkbox);
|
||||
|
|
Loading…
Add table
Reference in a new issue