comparison 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
comparison
equal deleted inserted replaced
513:0dfc01d8d42d 514:7d1afc73f835
133 LuanTable list = (LuanTable)parametersTbl.rawGet(name); 133 LuanTable list = (LuanTable)parametersTbl.rawGet(name);
134 if( list == null ) { 134 if( list == null ) {
135 list = new LuanTable(); 135 list = new LuanTable();
136 parametersTbl.rawPut(name,list); 136 parametersTbl.rawPut(name,list);
137 } 137 }
138 parametersTbl.rawPut(parametersTbl.rawLength()+1,value); 138 list.rawPut(parametersTbl.rawLength()+1,value);
139 } 139 }
140 } catch(IOException e) { 140 } catch(IOException e) {
141 throw new RuntimeException(e); 141 throw new RuntimeException(e);
142 } catch(ServletException e) { 142 } catch(ServletException e) {
143 throw new RuntimeException(e); 143 throw new RuntimeException(e);