0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-02 13:48:53 +02:00

modules/console: Fix errors.

This commit is contained in:
Jason Volk 2018-04-08 12:41:08 -07:00
parent c61186fb8f
commit 99ce3232d4

View file

@ -2061,7 +2061,7 @@ console_cmd__fed__groups(opt &out, const string_view &line)
request.in.content
};
std::cout << string_view{response} << std::endl;
out << string_view{response} << std::endl;
return true;
}
@ -2691,7 +2691,7 @@ console_cmd__fed__event_auth(opt &out, const string_view &line)
request
};
std::cout << string_view{response} << std::endl;
out << string_view{response} << std::endl;
return true;
}