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

master
Mnikolenko ProductEngine 2014-10-10 18:08:05 +03:00
parent 172dc08a0f
commit a1f983f63c
1 changed files with 7 additions and 0 deletions

View File

@ -175,11 +175,18 @@ S32 LLUriParser::normalize()
if (!mRes)
{
mNormalizedUri = &label_buf[mTmpScheme ? 7 : 0];
mTmpScheme = false;
}
}
}
}
if(mTmpScheme)
{
mNormalizedUri = mNormalizedUri.substr(7);
mTmpScheme = false;
}
return mRes;
}