Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Duplicate
-
2.5.5
-
None
Description
When using AliasInterceptor to aliases http parameters, the AliasInterceptor put in the value stack an instance of Parameter when it should call getValue() on this instance.
The problem seems to be located at line 168 of AliasInterceptor :
value = new Evaluated(contextParameters.get(name));
when it could be something like :
Parameter param = contextParameters.get(name); if (param != null){ value = new Evaluated(param.getValue()); }
Attachments
Issue Links
- duplicates
-
WW-4709 Invalid field value for field "id"
- Closed