summary refs log tree commit diff
path: root/util
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-01-15 18:44:04 +1100
committerErkin Alp Güney <erkinalp9035@gmail.com>2022-01-23 23:29:14 +0300
commit0a53860645dbddd4f127988ccd8da0abee7c6f2b (patch)
treee781c58b41c8a9196ae3db405e6f385cfd05bcf6 /util
parentAdd unhandled channel types to IsTextChannel method (diff)
downloadserver-0a53860645dbddd4f127988ccd8da0abee7c6f2b.tar.xz
channel.owner_id is type string not number
Diffstat (limited to 'util')
-rw-r--r--util/src/entities/Channel.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/util/src/entities/Channel.ts b/util/src/entities/Channel.ts
index aa1b823e..6750a002 100644
--- a/util/src/entities/Channel.ts
+++ b/util/src/entities/Channel.ts
@@ -311,7 +311,7 @@ export class Channel extends BaseClass {
 

 		//If the owner leave the server user is the new owner

 		if (channel.owner_id === user_id) {

-			channel.owner_id = 1; // The channel is now owned by the server user

+			channel.owner_id = "1"; // The channel is now owned by the server user

 			await emitEvent({

 				event: "CHANNEL_UPDATE",

 				data: await DmChannelDTO.from(channel, [user_id]),