[backend/federation] Remove default for ASActor.AlsoKnownAs

This commit is contained in:
Laura Hausmann 2024-02-10 20:09:53 +01:00
parent 8250ef58d3
commit bccf098dc4
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -93,7 +93,7 @@ public class ASActor : ASObject {
public ASLink? MovedTo { get; set; }
[J("https://www.w3.org/ns/activitystreams#alsoKnownAs")]
public List<ASLink>? AlsoKnownAs { get; set; } = [];
public List<ASLink>? AlsoKnownAs { get; set; }
[J("http://joinmastodon.org/ns#featured")]
[JC(typeof(ASLinkConverter))]