summary refs log tree commit diff
path: root/util/src
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
commit13a399cb59be4bfe19e8d9b2597325d959e51d8e (patch)
tree0d93fa44a4b5ad34873825c41de36a278db83b2d /util/src
parentDisable compact mode (diff)
downloadserver-13a399cb59be4bfe19e8d9b2597325d959e51d8e.tar.xz
Use 1:1 dms instead of group dms
Diffstat (limited to 'util/src')
-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;