String matching in REST handlers: must allow '-' as a separator, because the "/map" handler uses it

0.8.0.3
Oren Hurvitz 2014-04-02 17:11:32 +03:00
parent 0301c81b01
commit 2051535ce1
1 changed files with 1 additions and 1 deletions

View File

@ -857,7 +857,7 @@ namespace OpenSim.Framework.Servers.HttpServer
}
}
private readonly string HANDLER_SEPARATORS = "/?&#";
private readonly string HANDLER_SEPARATORS = "/?&#-";
private bool TryGetStreamHandler(string handlerKey, out IRequestHandler streamHandler)
{