🐛 | Commerce License | Error: Call to a member function getTimestamp() on int in Drupal\commerce_license\EventSubscriber\LicenseRenewalCartEventSubscriber->onCartEntityAdd() (line 123 of /code/web/modules/contrib/commerce_license/src/EventSubscriber/LicenseRenewalCartEventSubsc
🇮🇹Italy roberto.musa
It is not a complete solution but it allows you to bypass error since it is not in the getTimeStamp() usage but it is the extendedDateTime that is set to NULL
File: /modules/commerce_license/src/EventSubscriber/LicenseRenewalCartEventSubscriber.php line 123
- '@extended-date' => $this->dateFormatter->format($extendedDatetime->getTimestamp()),
+ '@extended-date' => ($extendedDatetime == NULL) ? 0 : $this->dateFormatter->format($extendedDatetime->getTimestamp()),