24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-02 21:17:12 +02:00

Allow a request_handler to serve a file in root of HTTP

This commit is contained in:
Badlop 2010-02-10 18:42:42 +01:00
parent abdb7f2742
commit 071aa123e8

View File

@ -317,7 +317,8 @@ process([], _) ->
process(Handlers, Request) -> process(Handlers, Request) ->
[{HandlerPathPrefix, HandlerModule} | HandlersLeft] = Handlers, [{HandlerPathPrefix, HandlerModule} | HandlersLeft] = Handlers,
case lists:prefix(HandlerPathPrefix, Request#request.path) of case (lists:prefix(HandlerPathPrefix, Request#request.path) or
(HandlerPathPrefix==Request#request.path)) of
true -> true ->
?DEBUG("~p matches ~p", [Request#request.path, HandlerPathPrefix]), ?DEBUG("~p matches ~p", [Request#request.path, HandlerPathPrefix]),
%% LocalPath is the path "local to the handler", i.e. if %% LocalPath is the path "local to the handler", i.e. if