fix: make condition.

This commit is contained in:
NekoCyan 2022-11-16 23:46:08 +07:00
parent d8058ec063
commit b206104627

View File

@ -983,9 +983,9 @@ class Client extends BaseClient {
* @returns {Promise<void>}
*/
sleep(miliseconds) {
return new Promise(r => setTimeout(r, miliseconds));
return typeof miliseconds === 'number' ? new Promise(r => setTimeout(r, miliseconds)) : null;
}
/**
* Validates the client options.
* @param {ClientOptions} [options=this.options] Options to validate