Fix error when persisting actors w/o display name
This commit is contained in:
parent
ada0463e75
commit
dc0b556e89
|
@ -11,17 +11,17 @@ export default class Actor {
|
|||
@Column({ type: "json" })
|
||||
actorObject: ActorObject;
|
||||
|
||||
@Column()
|
||||
@Column({ default: false })
|
||||
isFollower: boolean;
|
||||
|
||||
@Column()
|
||||
displayName: string;
|
||||
@Column({ nullable: true })
|
||||
displayName: string | null;
|
||||
|
||||
@Column()
|
||||
inbox: string;
|
||||
|
||||
@Column()
|
||||
iconURL: string;
|
||||
@Column({ nullable: true })
|
||||
iconURL: string | null;
|
||||
|
||||
@Column({ nullable: true })
|
||||
publicKeyPem: string | null;
|
||||
|
|
Loading…
Reference in New Issue