summary refs log tree commit diff
diff options
context:
space:
mode:
authorMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-07-03 15:01:51 +1000
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2022-07-03 15:01:51 +1000
commit712ba3ce57c921677f28d6e41a0b177dc9907960 (patch)
tree3b2a86bf0f4fcd3703356390126067b87ee25f69
parentDisable compact mode (diff)
downloadserver-712ba3ce57c921677f28d6e41a0b177dc9907960.tar.xz
Use 1:1 dms instead of group dms
-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 c2c6fbbc..3e8cd5ef 100644 --- a/util/src/entities/Channel.ts +++ b/util/src/entities/Channel.ts
@@ -255,7 +255,7 @@ export class Channel extends BaseClass { } **/ - const type = recipients.length > 1 ? ChannelType.DM : ChannelType.GROUP_DM; + const type = recipients.length > 1 ? ChannelType.GROUP_DM : ChannelType.DM; let channel = null;