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:
parent
89b258c5a7
commit
03abdd5ac6
1 changed files with 4 additions and 1 deletions
|
@ -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.
|
||||
|
|
Loading…
Reference in a new issue