Skip to content
Snippets Groups Projects
Commit d7579203 authored by Eugene Mutavchi's avatar Eugene Mutavchi
Browse files

Partial fix for reopened EXT-6357 (SLapp for object chat does display an...

Partial fix for reopened EXT-6357 (SLapp for object chat does display an inspector) - changed the order of registering SLURLs so the LLUrlEntryObjectIM will be handled before LLUrlEntryPlace.
Reviewed by Vadim Savchuk.

--HG--
branch : product-engine
parent 520ff658
No related branches found
No related tags found
No related merge requests found
...@@ -53,9 +53,9 @@ LLUrlRegistry::LLUrlRegistry() ...@@ -53,9 +53,9 @@ LLUrlRegistry::LLUrlRegistry()
registerUrl(new LLUrlEntryParcel()); registerUrl(new LLUrlEntryParcel());
registerUrl(new LLUrlEntryTeleport()); registerUrl(new LLUrlEntryTeleport());
registerUrl(new LLUrlEntryWorldMap()); registerUrl(new LLUrlEntryWorldMap());
registerUrl(new LLUrlEntryObjectIM());
registerUrl(new LLUrlEntryPlace()); registerUrl(new LLUrlEntryPlace());
registerUrl(new LLUrlEntryInventory()); registerUrl(new LLUrlEntryInventory());
registerUrl(new LLUrlEntryObjectIM());
//LLUrlEntrySL and LLUrlEntrySLLabel have more common pattern, //LLUrlEntrySL and LLUrlEntrySLLabel have more common pattern,
//so it should be registered in the end of list //so it should be registered in the end of list
registerUrl(new LLUrlEntrySL()); registerUrl(new LLUrlEntrySL());
......
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