- 🇬🇧United Kingdom malcomio
This is effectively the same issue as 🐛 Call to undefined method getUsername RTBC
When using the module in Drupal 9 we get the following error.
Error: Call to undefined method Drupal\user\Entity\User::getUsername() in Drupal\bulkemail\Form\MailForm->buildForm() (line 33 of modules/custom/bulkemail/src/Form/MailForm.php).
Change line 33: $name = $user->getUsername();
to
$name = $user->getDisplayName();
in
web/modules/bulkemail/src/Form/MailForm.php
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
This is effectively the same issue as 🐛 Call to undefined method getUsername RTBC