Mercurial Hosting > luan
changeset 1644:5c676385284b
minor
author | Franklin Schmidt <fschmidt@gmail.com> |
---|---|
date | Sat, 29 Jan 2022 18:33:18 -0700 |
parents | 8d751af51b9d |
children | 0af6a9d6d12f |
files | src/luan/host/Util.luan src/luan/modules/http/LuanHandler.java |
diffstat | 2 files changed, 1 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/luan/host/Util.luan Sun Jan 02 00:42:58 2022 -0700 +++ b/src/luan/host/Util.luan Sat Jan 29 18:33:18 2022 -0700 @@ -12,7 +12,6 @@ local Binary = require "luan:Binary.luan" local bytes = Binary.byte or error() local base64_encode = Binary.base64_encode or error() -local digest_message = Binary.digest_message or error() local Hosted = require "luan:host/Hosted.luan" local Sql = require "luan:sql/Sql.luan" local database = Sql.database or error()
--- a/src/luan/modules/http/LuanHandler.java Sun Jan 02 00:42:58 2022 -0700 +++ b/src/luan/modules/http/LuanHandler.java Sat Jan 29 18:33:18 2022 -0700 @@ -270,7 +270,7 @@ LuanFunction fn; Luan luan; synchronized(currentLuan) { - currentLuan.require("luan:http/Http.luan"); + currentLuan.require("luan:http/Http.luan"); Object mod = PackageLuan.load(currentLuan,modName,null); if( mod.equals(Boolean.FALSE) ) return null;