Martti T.

Results 364 comments of Martti T.

Changing that field from `*[]string` to `[]string` should do the trick. At the moment binder knows to only to handle pointers to common types ala string,bool, structs etc and not...

I'll take a look we probably can do something with binder. for history sake: pointer to slice related issue https://github.com/deepmap/oapi-codegen/issues/266

If the same application has colors and does not have colors in docker, this is probably not Echo issue. Colors are enabled by this library https://github.com/mattn/go-colorable

it is still open. submit PR for it if you have time

This is working as intended. When Go standard library parses the Form the request body will be read till the end and can not be read anymore. All form values...

Sorry for the late reply. If you are have interest and time for it please go ahead. Could you provide small summary of which structs you aim, maybe small example...

Current Router behavior/limitation with `*` is - if there is a `*` in registered route - it will mean that everything in that segment and after that becomes `*`. So...

This has been raised before. It seems that routes like that are popular lately. I would like Router to have that feature but I am not sure this will happen...

Linking recent similar issue https://github.com/labstack/echo/issues/2617 p.s. I proposed [workaround](https://github.com/labstack/echo/issues/2617#issuecomment-2022941197) in that case. It is not pretty but works for suffix matches. ---------------- This is side note for myself or any...