Skip to content

Commit

Permalink
Fix for missing normalize
Browse files Browse the repository at this point in the history
  • Loading branch information
kciter committed Jul 6, 2023
1 parent 07afd1c commit d8d6873
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class ThingInterceptor: MethodInterceptor {

val returnValue = invocation.proceed()
if (returnValue is Thing<*>) {
return returnValue.redact()
return (returnValue.normalize() as Thing<*>).redact()
}

return returnValue
Expand Down

0 comments on commit d8d6873

Please sign in to comment.