Skip to content
Snippets Groups Projects
Commit 4a187aec authored by Ansariel's avatar Ansariel
Browse files

MAINT-5756: Unicode characters in online notifications get stripped

parent 2e40ff7f
No related branches found
No related tags found
No related merge requests found
......@@ -186,6 +186,7 @@ Ansariel Hiller
STORM-1984
STORM-1979
MAINT-5533
MAINT-5756
Aralara Rajal
Arare Chantilly
CHUIBUG-191
......
......@@ -41,7 +41,8 @@ LLUrlRegistry::LLUrlRegistry()
mUrlEntry.reserve(20);
// Urls are matched in the order that they were registered
registerUrl(new LLUrlEntryNoLink());
mUrlEntryNoLink = new LLUrlEntryNoLink();
registerUrl(mUrlEntryNoLink);
mUrlEntryIcon = new LLUrlEntryIcon();
registerUrl(mUrlEntryIcon);
mLLUrlEntryInvalidSLURL = new LLUrlEntryInvalidSLURL();
......@@ -223,7 +224,7 @@ bool LLUrlRegistry::findUrl(const std::string &text, LLUrlMatch &match, const LL
std::string url = text.substr(match_start, match_end - match_start + 1);
LLUrlEntryBase *stripped_entry = NULL;
if(LLStringUtil::containsNonprintable(url))
if(match_entry != mUrlEntryNoLink && LLStringUtil::containsNonprintable(url))
{
LLStringUtil::stripNonprintable(url);
......
......@@ -98,6 +98,7 @@ class LLUrlRegistry : public LLSingleton<LLUrlRegistry>
LLUrlEntryBase* mLLUrlEntryInvalidSLURL;
LLUrlEntryBase* mUrlEntryHTTPLabel;
LLUrlEntryBase* mUrlEntrySLLabel;
LLUrlEntryBase* mUrlEntryNoLink;
};
#endif
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