Automatically closed - issue fixed for 2 weeks with no activity.
When using PHP 8.1, this NG Lightbox floods the logs with this warning if the module is enabled and nothing is set in the Paths textfield in the settings:
Deprecated function: strtolower(): Passing null to parameter #1 ($string) of type string is deprecated in Drupal\ng_lightbox\NgLightbox->isNgLightboxEnabledPath() (line 121 of modules/contrib/ng_lightbox/src/NgLightbox.php).
Upgrade PHP to 8.1. Install the module but do not enter anything in the Paths setting at `/admin/config/media/ng-lightbox`.
Convert null to empty string before running through the strtolower function.
$patterns = $this->config->get('patterns') ?? '';
$patterns = strtolower($patterns);
Fixed
2.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
Automatically closed - issue fixed for 2 weeks with no activity.