Skip to content
Snippets Groups Projects
Commit c94653ee authored by Alexei Arabadji's avatar Alexei Arabadji
Browse files

EXT-7363 FIXED Added missing conversion of SLURL parameters string to query parameters map.

reviewed by Vadim Savchuk at https://codereview.productengine.com/secondlife/r/397/

--HG--
branch : product-engine
parent 99c9ceeb
No related branches found
No related tags found
No related merge requests found
...@@ -151,8 +151,9 @@ bool LLURLDispatcherImpl::dispatchApp(const LLSLURL& slurl, ...@@ -151,8 +151,9 @@ bool LLURLDispatcherImpl::dispatchApp(const LLSLURL& slurl,
bool trusted_browser) bool trusted_browser)
{ {
llinfos << "cmd: " << slurl.getAppCmd() << " path: " << slurl.getAppPath() << " query: " << slurl.getAppQuery() << llendl; llinfos << "cmd: " << slurl.getAppCmd() << " path: " << slurl.getAppPath() << " query: " << slurl.getAppQuery() << llendl;
const LLSD& query_map = LLURI::queryMap(slurl.getAppQuery());
bool handled = LLCommandDispatcher::dispatch( bool handled = LLCommandDispatcher::dispatch(
slurl.getAppCmd(), slurl.getAppPath(), slurl.getAppQuery(), web, trusted_browser); slurl.getAppCmd(), slurl.getAppPath(), query_map, web, trusted_browser);
// alert if we didn't handle this secondlife:///app/ SLURL // alert if we didn't handle this secondlife:///app/ SLURL
// (but still return true because it is a valid app SLURL) // (but still return true because it is a valid app SLURL)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment