mirror of https://github.com/usbharu/Hideout.git
fix: #191 Documentのnameがnullのとき空文字になるように
This commit is contained in:
parent
73e04bdd8a
commit
b3bbefb543
|
@ -1,9 +1,12 @@
|
||||||
package dev.usbharu.hideout.activitypub.domain.model
|
package dev.usbharu.hideout.activitypub.domain.model
|
||||||
|
|
||||||
|
import com.fasterxml.jackson.annotation.JsonSetter
|
||||||
|
import com.fasterxml.jackson.annotation.Nulls
|
||||||
import dev.usbharu.hideout.activitypub.domain.model.objects.Object
|
import dev.usbharu.hideout.activitypub.domain.model.objects.Object
|
||||||
|
|
||||||
open class Document(
|
open class Document(
|
||||||
type: List<String> = emptyList(),
|
type: List<String> = emptyList(),
|
||||||
|
@JsonSetter(nulls = Nulls.AS_EMPTY)
|
||||||
override val name: String = "",
|
override val name: String = "",
|
||||||
val mediaType: String,
|
val mediaType: String,
|
||||||
val url: String
|
val url: String
|
||||||
|
|
Loading…
Reference in New Issue