proxy & setNextEvent()

using the proxy, if there is an event with a setNextEvent(), the page
does a redirect.

should coldbox defuse the redirect if the request is coming via the
proxy?

I wrap my setNextEvent() with if (not event.isProxyRequest()){ setNextEvent(some.event) } if the request can come from either a proxy or regular request.

Curt

curt... im basically doing the same thing except i mix in a helper
method (called _setNextEvent()) that does that check to avoid all the
IF statements.