Hi,
I have the following issue: I use a FilteredActivityMapper with the following filtering:
@Override
public Place filter(Place place) {
if(// check user is logged in) {
return new EIRegisterPlace("", place);
}
return place;
}
Filtering works well except that when the user logs in I call placeController.goTo(nextPlace) and the code gets stuck. The reason is that the "where" variable is still set to the old place (and not the EIRegsiterPlace), so where = nextPlace and the placeController gets blocked.
Any idea if this normal (that the place doesn't change to "EIRegisterPlace")? and is there a workaround? another way of proceeding?
Thanks,
Thomas