diff options
Diffstat (limited to 'linden/indra/newview/llurldispatcher.cpp')
-rw-r--r-- | linden/indra/newview/llurldispatcher.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/linden/indra/newview/llurldispatcher.cpp b/linden/indra/newview/llurldispatcher.cpp index 7344206..e49e9e5 100644 --- a/linden/indra/newview/llurldispatcher.cpp +++ b/linden/indra/newview/llurldispatcher.cpp | |||
@@ -196,7 +196,9 @@ bool LLURLDispatcherImpl::dispatchApp(const std::string& url, BOOL right_mouse) | |||
196 | std::map<std::string, std::string> args; | 196 | std::map<std::string, std::string> args; |
197 | args["[SLURL]"] = url; | 197 | args["[SLURL]"] = url; |
198 | gViewerWindow->alertXml("BadURL", args); | 198 | gViewerWindow->alertXml("BadURL", args); |
199 | return false; | 199 | // This was a SLURL with a /app prefix, and we "handled" it by displaying an error dialog, |
200 | // so return true. It doesn't need to be parsed any further. | ||
201 | return true; | ||
200 | } | 202 | } |
201 | 203 | ||
202 | // static | 204 | // static |