Problem/Motivation
Warning: Trying to access array offset on value of type bool in Drupal\media_entity_instagram\Plugin\media\Source\Instagram->getMetadata()
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | 3200960-4.patch | 516 bytes | chr.fritsch |
| #2 | 3200960.patch | 506 bytes | chr.fritsch |
Comments
Comment #2
chr.fritschThis a PHP 8 issue.
Comment #3
daniel.bosenI would suggest to either simplify to
if (!empty($matches['shortcode'])), or go all-in on type testing and doif (is_array($matches) && !empty($matches['shortcode']))Comment #4
chr.fritschStrict type check
Comment #5
daniel.bosenlgtm
Comment #7
chr.fritschCommitted
Comment #9
liam morland