diff http/src/luan/modules/http/HttpServicer.java @ 514:7d1afc73f835

fix multipart
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 25 May 2015 22:19:18 -0600
parents 7bc63886d4f2
children aa17ad66a370
line wrap: on
line diff
--- a/http/src/luan/modules/http/HttpServicer.java	Sun May 24 12:05:00 2015 -0600
+++ b/http/src/luan/modules/http/HttpServicer.java	Mon May 25 22:19:18 2015 -0600
@@ -135,7 +135,7 @@
 						list = new LuanTable();
 						parametersTbl.rawPut(name,list);
 					}
-					parametersTbl.rawPut(parametersTbl.rawLength()+1,value);
+					list.rawPut(parametersTbl.rawLength()+1,value);
 				}
 			} catch(IOException e) {
 				throw new RuntimeException(e);