- Issue created by @Giuseppe87
- 🇮🇹Italy Giuseppe87
I've updated the example with the actual code I used to cause this behaviour.
- 🇮🇹Italy Giuseppe87
As workaround I've found that limiting the handled formats to 'html' wont' cause the loop.
E.g.
protected function getHandledFormats() { return ['html']; }
or just don't overriding the method of the parent class.
This obliviously works only if the subscriber doesn't need to intercept json\rest request. I haven't tested the case a json\rest request is handled inside the
on403
on404
methods.