1
0
Fork 0
mirror of https://github.com/HackHerz/pusher synced 2025-12-06 02:10:19 +00:00

Added url-decoding

This commit is contained in:
Daniel Stein 2014-09-11 18:43:24 +02:00
parent d11867f430
commit e242b208db
5 changed files with 36 additions and 5 deletions

View file

@ -198,9 +198,10 @@ int main(int argc, char **argv)
{
string pipeBuffer;
while(cin >> pipeBuffer)
while(getline(cin, pipeBuffer))
{
message += pipeBuffer;
message += "\n";
}
}
else