Skip to content

Commit 7bd2745

Browse files
committed
fix
1 parent eeed4a2 commit 7bd2745

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ManagedCode.Communication/Result/Result.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public bool IsNotErrorCode(Enum value)
8080
public Dictionary<string, string>? InvalidObject { get; set; }
8181

8282
[JsonIgnore]
83-
public bool IsInvalid => !IsSuccess || InvalidObject?.Any() is true;
83+
public bool IsInvalid => !IsSuccess && InvalidObject?.Any() is true;
8484

8585
public void AddInvalidMessage(string message)
8686
{

0 commit comments

Comments
 (0)