diff src/luan/host/WebHandler.java @ 1563:8fbcc4747091

remove LuanFunction.luan
author Franklin Schmidt <fschmidt@gmail.com>
date Mon, 09 Nov 2020 01:37:57 -0700
parents b89212fd04b5
children c922446f53aa
line wrap: on
line diff
--- a/src/luan/host/WebHandler.java	Sun Nov 08 16:50:59 2020 -0700
+++ b/src/luan/host/WebHandler.java	Mon Nov 09 01:37:57 2020 -0700
@@ -68,7 +68,7 @@
 		LuanLogger.startThreadLogging(luan);
 		try {
 			LuanFunction fn = Luan.loadClasspath(luan,"luan/host/init.luan");
-			fn.call(dir,domain);
+			fn.call(luan,dir,domain);
 		} catch(LuanException e) {
 			throw new LuanRuntimeException(e);
 		} finally {