Skip to content
Snippets Groups Projects
Commit a1f983f6 authored by Mnikolenko ProductEngine's avatar Mnikolenko ProductEngine
Browse files

MAINT-4567 FIXED <nolink> is not parsed correctly in viewer-lion

parent 172dc08a
No related branches found
No related tags found
No related merge requests found
...@@ -175,11 +175,18 @@ S32 LLUriParser::normalize() ...@@ -175,11 +175,18 @@ S32 LLUriParser::normalize()
if (!mRes) if (!mRes)
{ {
mNormalizedUri = &label_buf[mTmpScheme ? 7 : 0]; mNormalizedUri = &label_buf[mTmpScheme ? 7 : 0];
mTmpScheme = false;
} }
} }
} }
} }
if(mTmpScheme)
{
mNormalizedUri = mNormalizedUri.substr(7);
mTmpScheme = false;
}
return mRes; return mRes;
} }
......
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