APItools / router.lua

A barebones router for Lua. It matches urls and executes lua functions.
MIT License
196 stars 47 forks source link

Preserve parameter's metatables #31

Open bbblitz opened 4 years ago

bbblitz commented 4 years ago

If parameters with metatables are passed to :execute(), preserve the metatables in the parameters passed to the matched function. This may solve some cases of #29 .

lalawue commented 4 years ago

If parameters with metatables are passed to :execute(), preserve the metatables in the parameters passed to the matched function. This may solve some cases of #29 .

it works, thanks.

bbblitz commented 4 years ago

Great! So can I get merged?