On Telegram, Kathinka currently might need over five minutes to output all the action points.
This is due to the 'natural' delays, coded here:
|
}, message.length * (25 + 25 * Math.random())); |
|
}, message.length * (125 + 125 * Math.random())); |
|
}, message.length * (25 + 25 * Math.random())); |
I propose we set an upper limit for the time it would take Kathinka to output a message to one second:
Math.min(1000 , message.length * (5 + 5 * Math.random()))
On Telegram, Kathinka currently might need over five minutes to output all the action points.
This is due to the 'natural' delays, coded here:
I propose we set an upper limit for the time it would take Kathinka to output a message to one second:
Math.min(1000 , message.length * (5 + 5 * Math.random()))