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" })
|
@Column({ type: "json" })
|
||||||
actorObject: ActorObject;
|
actorObject: ActorObject;
|
||||||
|
|
||||||
@Column()
|
@Column({ default: false })
|
||||||
isFollower: boolean;
|
isFollower: boolean;
|
||||||
|
|
||||||
@Column()
|
@Column({ nullable: true })
|
||||||
displayName: string;
|
displayName: string | null;
|
||||||
|
|
||||||
@Column()
|
@Column()
|
||||||
inbox: string;
|
inbox: string;
|
||||||
|
|
||||||
@Column()
|
@Column({ nullable: true })
|
||||||
iconURL: string;
|
iconURL: string | null;
|
||||||
|
|
||||||
@Column({ nullable: true })
|
@Column({ nullable: true })
|
||||||
publicKeyPem: string | null;
|
publicKeyPem: string | null;
|
||||||
|
|
Loading…
Reference in New Issue