Fix clang tidy error due to incorrect use of quotes for character

master
rubenwardy 2019-03-06 14:41:37 +00:00
parent 1c87d57e1d
commit c735497a65
1 changed files with 1 additions and 1 deletions

View File

@ -257,7 +257,7 @@ void ClientMediaDownloader::initialStep(Client *client)
// Encapsulate possible IPv6 plain address in []
std::string addr = client->getAddressName();
if (addr.find(":", 0) != std::string::npos)
if (addr.find(':', 0) != std::string::npos)
addr = '[' + addr + ']';
fetch_request.extra_headers.emplace_back(
std::string("Referer: minetest://") +