FIRE-6898 - Explicitly ignore data URI's

Liny 2012-07-07 14:02:55 -07:00
parent 5f303a2104
commit 51c8db8756
1 changed files with 6 additions and 0 deletions

View File

@ -100,6 +100,12 @@ LLSLURL::LLSLURL(const std::string& slurl)
{
fixed_slurl += slurl.substr(1);
}
// <FS:LO> FIRE-6898 - Explicitly ignore data URI's
else if(slurl.substr(0,4) == "data")
{
fixed_slurl = slurl;
}
// </FS:LO>
else
{
fixed_slurl += slurl;