[SETTINGS][NOTIFICATIONS] Fix error when displaying the user notification settings page

This commit is contained in:
Hugo Sales 2020-10-11 17:19:29 +00:00 committed by Hugo Sales
parent 221829c6fd
commit 089c710711
Signed by: someonewithpc
GPG Key ID: 7D0C7EAFC9D835A0
1 changed files with 2 additions and 2 deletions

View File

@ -197,10 +197,10 @@ class UserPanel extends AbstractController
case Types::INTEGER:
if ($name == 'target_actor_id') {
$form_defs['placeholder'][$name] = ['target_actors', TextType::class, ['data' => $val, 'label' => _m($labels[$name]), 'help' => _m($help[$name])], 'transformer' => ActorArrayTransformer::class];
break;
}
// no break
break;
default:
dd($type_str);
throw new Exception("Structure of table user_notification_prefs changed in a way not accounted to in notification settings ({$name})", 500);
}
}