diff --git a/indra/newview/fsslurl.cpp b/indra/newview/fsslurl.cpp index dfeea0f9b2..f0f0213547 100644 --- a/indra/newview/fsslurl.cpp +++ b/indra/newview/fsslurl.cpp @@ -100,6 +100,12 @@ LLSLURL::LLSLURL(const std::string& slurl) { fixed_slurl += slurl.substr(1); } + // FIRE-6898 - Explicitly ignore data URI's + else if(slurl.substr(0,4) == "data") + { + fixed_slurl = slurl; + } + // else { fixed_slurl += slurl;