The systempay.systempay_init_form route return AccessResult::forbidden
.
This because \Drupal::currentUser()->id()
return a string or an int.
Force convert to integer, replace:
if ((int) $payment->getOwnerId() !== $this->currentUser->id()) {
by:
if ((int) $payment->getOwnerId() !== (int) $this->currentUser->id()) {
Active
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.