fukamachi / clack

Web server abstraction layer for Common Lisp
MIT License
1.05k stars 86 forks source link

wookie: Fix POST handling #181

Closed akanouras closed 1 year ago

akanouras commented 1 year ago

POSTing data without this patch results in http-body.util:slurp-stream calling make-array with a string dimensions argument, which it responds to with a very cryptic warning:

   The value
     "464"
   is not of type
     (OR LIST (MOD 4611686018427387901))
   when binding SB-VM::DIMENSIONS

and results in a 400 Bad Request.

fukamachi commented 1 year ago

Thanks!

akanouras commented 1 year ago

Thank you very much for all your work!