summary refs log tree commit diff
diff options
context:
space:
mode:
authorErkin Alp Güney <erkinalp9035@gmail.com>2022-03-23 22:25:46 +0300
committerGitHub <noreply@github.com>2022-03-23 22:25:46 +0300
commit67011ccc3d4147e47cbc1f728deb73e3e45641c9 (patch)
tree07c8c4b36eb2b5c7f4517cecf722fb1363b78fb9
parentA few channels on channels (diff)
downloadserver-67011ccc3d4147e47cbc1f728deb73e3e45641c9.tar.xz
fix the conditional
-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 f6b1a6b4..08be1e02 100644 --- a/util/src/entities/Channel.ts +++ b/util/src/entities/Channel.ts
@@ -212,7 +212,7 @@ export class Channel extends BaseClass { ...channel, ...(!opts?.keepId && { id: Snowflake.generate() }), created_at: new Date(), - position: ((channel.type === ChannelType.UNHANDLED) || channel.position) || 0, + position: (channel.type === ChannelType.UNHANDLED ? 0 : channel.position) || 0, }; await Promise.all([