You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Caching information is only collected when the entryIdentifier contains a "format = 'html'", uncached elements do not contain a 'format' in the entryIdentifier, this is only mandatory for 'cached' or 'dynamic'.
Offending lines:
// Add debug data only to html output
$segmentFormat = $info['entryIdentifier']['format'] ?? null;
if ($segmentFormat !== 'html') {
return $segment;
}
And we cannot add the debug data if we don't know what kind of data is returned. I'm sure there is a good way to solve this, but I haven't had the incentive yet to investigate. So any outside input would be great.
Caching information is only collected when the entryIdentifier contains a "format = 'html'", uncached elements do not contain a 'format' in the entryIdentifier, this is only mandatory for 'cached' or 'dynamic'.
Offending lines:
See commit: b46cc51
The text was updated successfully, but these errors were encountered: