[backend/federation] Fix ASObject.IsUnresolved regression
This commit is contained in:
parent
af2f5a5ef9
commit
4dc021fcc4
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue