0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2025-01-14 00:34:18 +01:00

modules/client/sync: Improve since token rejection message.

This commit is contained in:
Jason Volk 2019-03-16 12:26:03 -07:00
parent 89b258c5a7
commit 03abdd5ac6

View file

@ -109,7 +109,10 @@ ircd::m::sync::handle_get(client &client,
if(range.first > range.second)
throw m::NOT_FOUND
{
"Since parameter is too far in the future..."
"Since parameter '%lu' is too far in the future."
" Cannot be greater than '%lu'.",
range.first,
range.second
};
// Keep state for statistics of this sync here on the stack.