1
0
Fork 0
mirror of https://gitlab.com/niansa/commsyfuse.git synced 2025-03-06 20:48:31 +01:00

Fixed typo

This commit is contained in:
niansa 2020-04-29 16:43:41 +02:00
parent ee038d445b
commit 6f5047110f

View file

@ -280,7 +280,7 @@ std::string get_post_desc(std::string post_url) {
long statuscode = curlreq(httpcontent, server_sid, post_url);
// Check statuscode
if (statuscode != 200) {
panic("Request to download post had a unexpected result: "+std::to_string(statuscode));
panic("Request to download post had an unexpected result: "+std::to_string(statuscode));
}
// Parse post
post_document = gumbo_parse(httpcontent.str().c_str());