summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/util/entities/Member.ts20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/util/entities/Member.ts b/src/util/entities/Member.ts
index 8be6eae1..d305e4f5 100644
--- a/src/util/entities/Member.ts
+++ b/src/util/entities/Member.ts
@@ -16,8 +16,7 @@
 	along with this program.  If not, see <https://www.gnu.org/licenses/>.
 */
 
-import { PublicUser, User } from "./User";
-import { Message } from "./Message";
+import { HTTPError } from "lambert-server";
 import {
 	BeforeInsert,
 	BeforeUpdate,
@@ -32,8 +31,8 @@ import {
 	PrimaryGeneratedColumn,
 	RelationId,
 } from "typeorm";
-import { Guild } from "./Guild";
-import { Config, emitEvent } from "../util";
+import { Ban, PublicGuildRelations } from ".";
+import { ReadyGuildDTO } from "../dtos";
 import {
 	GuildCreateEvent,
 	GuildDeleteEvent,
@@ -42,12 +41,13 @@ import {
 	GuildMemberUpdateEvent,
 	MessageCreateEvent,
 } from "../interfaces";
-import { HTTPError } from "lambert-server";
-import { Role } from "./Role";
-import { BaseClassWithoutId } from "./BaseClass";
-import { Ban, PublicGuildRelations } from ".";
+import { Config, emitEvent } from "../util";
 import { DiscordApiErrors } from "../util/Constants";
-import { ReadyGuildDTO } from "../dtos";
+import { BaseClassWithoutId } from "./BaseClass";
+import { Guild } from "./Guild";
+import { Message } from "./Message";
+import { Role } from "./Role";
+import { PublicUser, User } from "./User";
 
 export const MemberPrivateProjection: (keyof Member)[] = [
 	"id",
@@ -326,7 +326,7 @@ export class Member extends BaseClassWithoutId {
 			where: {
 				id: guild_id,
 			},
-			relations: [...PublicGuildRelations, "system_channel"],
+			relations: PublicGuildRelations,
 		});
 
 		const memberCount = await Member.count({ where: { guild_id } });