From 74630d681464a8c351c2c5393e336df3c918dd6d Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Tue, 29 Dec 2009 17:50:35 +0000 Subject: [PATCH] libs/lucid-http: fix regressions with recent git uci --- libs/lucid-http/luasrc/lucid/http/DirectoryPublisher.lua | 4 ++-- libs/lucid-http/luasrc/lucid/http/LuciWebPublisher.lua | 4 ++-- libs/lucid-http/luasrc/lucid/http/Redirector.lua | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) 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 -- 2.11.0