mirror of
https://github.com/danbulant/discord.js
synced 2026-05-25 13:02:38 +00:00
Capitalise two letters
This commit is contained in:
parent
ecbc591c95
commit
36f4df2931
1 changed files with 2 additions and 2 deletions
|
|
@ -150,7 +150,7 @@ class WebSocketManager extends EventEmitter {
|
|||
this._sendNewIdentify();
|
||||
return;
|
||||
}
|
||||
this.client.emit('debug', 'identifying as resumed session');
|
||||
this.client.emit('debug', 'Identifying as resumed session');
|
||||
const payload = {
|
||||
token: this.client.token,
|
||||
session_id: this.sessionID,
|
||||
|
|
@ -173,7 +173,7 @@ class WebSocketManager extends EventEmitter {
|
|||
if (this.client.options.shard_count > 0) {
|
||||
payload.shard = [Number(this.client.options.shard_id), Number(this.client.options.shard_count)];
|
||||
}
|
||||
this.client.emit('debug', 'identifying as new session');
|
||||
this.client.emit('debug', 'Identifying as new session');
|
||||
this.send({
|
||||
op: Constants.OPCodes.IDENTIFY,
|
||||
d: payload,
|
||||
|
|
|
|||
Loading…
Reference in a new issue