mirror of
https://github.com/spacebarchat/server.git
synced 2026-06-09 08:31:48 +00:00
Fix for Premium Since to show the 'Guild Boost' and store it correctly in the database
This commit is contained in:
@@ -86,7 +86,7 @@ export class Member extends BaseClassWithoutId {
|
||||
joined_at: Date;
|
||||
|
||||
@Column({ nullable: true })
|
||||
premium_since?: number;
|
||||
premium_since?: Date;
|
||||
|
||||
@Column()
|
||||
deaf: boolean;
|
||||
@@ -245,7 +245,7 @@ export class Member extends BaseClassWithoutId {
|
||||
nick: undefined,
|
||||
roles: [guild_id], // @everyone role
|
||||
joined_at: new Date(),
|
||||
premium_since: undefined,
|
||||
premium_since: new Date(),
|
||||
deaf: false,
|
||||
mute: false,
|
||||
pending: false,
|
||||
|
||||
Reference in New Issue
Block a user