diff --git a/Iceshrimp.Backend/Core/Federation/ActivityStreams/Types/ASObject.cs b/Iceshrimp.Backend/Core/Federation/ActivityStreams/Types/ASObject.cs index 6fdb249c..eaea325a 100644 --- a/Iceshrimp.Backend/Core/Federation/ActivityStreams/Types/ASObject.cs +++ b/Iceshrimp.Backend/Core/Federation/ActivityStreams/Types/ASObject.cs @@ -14,7 +14,7 @@ public class ASObject : ASObjectBase [JC(typeof(StringListSingleConverter))] public string? Type { get; set; } - [JI] public bool IsUnresolved => GetType() == typeof(ASObject) && Type == null; + [JI] public bool IsUnresolved => Type == null; //FIXME: don't recurse creates and co public static ASObject? Deserialize(JToken token)