diff options
author | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-07-03 15:01:51 +1000 |
---|---|---|
committer | Madeline <46743919+MaddyUnderStars@users.noreply.github.com> | 2022-07-03 15:01:51 +1000 |
commit | 13a399cb59be4bfe19e8d9b2597325d959e51d8e (patch) | |
tree | 0d93fa44a4b5ad34873825c41de36a278db83b2d /util | |
parent | Disable compact mode (diff) | |
download | server-13a399cb59be4bfe19e8d9b2597325d959e51d8e.tar.xz |
Use 1:1 dms instead of group dms
Diffstat (limited to 'util')
-rw-r--r-- | util/src/entities/Channel.ts | 2 |
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; |