Spaces to underscores in Wikimedia links

Signed-off-by: alnzrv <7187657+alnzrv@users.noreply.github.com>
This commit is contained in:
alnzrv 2024-07-04 21:09:05 +02:00 committed by GitHub
parent 3dbc70e7f5
commit 9b495262c0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -55,11 +55,13 @@ std::string Metadata::ToWikimediaCommonsURL(std::string v)
if (v.empty())
return v;
// ? character should be corrected to form a valid URL's path.
// Spaces and ? characters should be corrected to form a valid URL's path.
for (auto i = 0; i < v.size(); ++i)
{
auto & c = v[i];
if (c == '?')
if (c == ' ')
c = '_';
else if (c == '?')
{
c = '%';
v.insert(++i, "3F"); // ? => %3F