mirror of
https://github.com/spacebarchat/server.git
synced 2026-04-07 23:35:44 +00:00
fix the conditional
This commit is contained in:
@@ -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([
|
||||
|
||||
Reference in New Issue
Block a user