summary refs log tree commit diff
path: root/util
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-13 00:17:56 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-09-13 00:17:56 +0200
commit6b21e107dd00b59da3bd53badfe46878cde81179 (patch)
tree53abcfd964ad392f569528e0c5cdb915aa9f008f /util
parent:bug: fix invites: ajv doesn't treat null as undefined (diff)
downloadserver-6b21e107dd00b59da3bd53badfe46878cde81179.tar.xz
:bug: fix channel events + message send
Diffstat (limited to 'util')
-rw-r--r--util/src/entities/Channel.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/src/entities/Channel.ts b/util/src/entities/Channel.ts
index fce85e3f..592b0b83 100644
--- a/util/src/entities/Channel.ts
+++ b/util/src/entities/Channel.ts
@@ -61,6 +61,7 @@ export class Channel extends BaseClass {
 	@ManyToOne(() => Channel)
 	parent?: Channel;
 
+	// only for group dms
 	@Column({ nullable: true })
 	@RelationId((channel: Channel) => channel.owner)
 	owner_id: string;