fix: actorが初期化されていなかったのを修正

This commit is contained in:
usbharu 2023-04-29 17:59:57 +09:00
parent f31f89a540
commit 814fe48579
Signed by: usbharu
GPG Key ID: 6556747BF94EEBC8
1 changed files with 1 additions and 0 deletions

View File

@ -15,6 +15,7 @@ open class Object : JsonLd {
constructor(type: List<String>, name: String? = null,actor:String? = null) : super() {
this.type = type
this.name = name
this.actor = actor
}
companion object {