From: Jo-Philipp Wich Date: Tue, 29 Dec 2009 17:50:35 +0000 (+0000) Subject: libs/lucid-http: fix regressions with recent git uci X-Git-Tag: 0.10.0~863 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=74630d681464a8c351c2c5393e336df3c918dd6d;hp=a7ec41b283ddba3c109a19319d13f574dc3c6bc0 libs/lucid-http: fix regressions with recent git uci --- diff --git a/libs/lucid-http/luasrc/lucid/http/DirectoryPublisher.lua b/libs/lucid-http/luasrc/lucid/http/DirectoryPublisher.lua index b57b5586a..09cade49e 100644 --- a/libs/lucid-http/luasrc/lucid/http/DirectoryPublisher.lua +++ b/libs/lucid-http/luasrc/lucid/http/DirectoryPublisher.lua @@ -45,6 +45,6 @@ function factory(server, config) vhost:set_handler(v, handler) end else - vhost:set_handler(config.virtual, handler) + vhost:set_handler(config.virtual or "", handler) end -end \ No newline at end of file +end diff --git a/libs/lucid-http/luasrc/lucid/http/LuciWebPublisher.lua b/libs/lucid-http/luasrc/lucid/http/LuciWebPublisher.lua index 92dd7e2cb..5dc70df84 100644 --- a/libs/lucid-http/luasrc/lucid/http/LuciWebPublisher.lua +++ b/libs/lucid-http/luasrc/lucid/http/LuciWebPublisher.lua @@ -64,10 +64,10 @@ function factory(server, config) end else mypath = config.virtual - vhost:set_handler(config.virtual, handler) + vhost:set_handler(config.virtual or "", handler) end if config.home then vhost.default = mypath end -end \ No newline at end of file +end diff --git a/libs/lucid-http/luasrc/lucid/http/Redirector.lua b/libs/lucid-http/luasrc/lucid/http/Redirector.lua index 73561af2d..66a86a7ff 100644 --- a/libs/lucid-http/luasrc/lucid/http/Redirector.lua +++ b/libs/lucid-http/luasrc/lucid/http/Redirector.lua @@ -29,5 +29,5 @@ function factory(server, config) end local handler = catchall.Redirect(config.name, config.physical) - vhost:set_handler(config.virtual, handler) -end \ No newline at end of file + vhost:set_handler(config.virtual or "", handler) +end