Fix bug in title encoding.
This commit is contained in:
parent
99e546455b
commit
0868f48b9a
1 changed files with 3 additions and 1 deletions
|
@ -42,7 +42,9 @@ bool EncodeTitle(string & s)
|
|||
if (i != string::npos)
|
||||
{
|
||||
s = s.substr(i+1);
|
||||
return !s.empty();
|
||||
|
||||
if (s.empty())
|
||||
return false;
|
||||
}
|
||||
|
||||
replace(s.begin(), s.end(), '_', ' ');
|
||||
|
|
Reference in a new issue