summary refs log tree commit diff
diff options
context:
space:
mode:
authorChrisChrome <christophercookman@gmail.com>2022-08-13 01:02:24 -0600
committerChrisChrome <christophercookman@gmail.com>2022-08-13 01:02:24 -0600
commit78247f0dfc95061b4b0990c820eb86868308517e (patch)
treedb3956f3517ee00d97ee58f658b9db0e09873030
parentThat... Was a bad idea (diff)
downloadserver-78247f0dfc95061b4b0990c820eb86868308517e.tar.xz
Thats it, thats the fix, thanks erkinalp
-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 92940b34..ade0fb39 100644
--- a/util/src/entities/Channel.ts
+++ b/util/src/entities/Channel.ts
@@ -245,7 +245,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;