Skip to content

Commit 7ddafd9

Browse files
committed
Merge remote-tracking branch 'origin/main' into Extensions
# Conflicts: # Directory.Build.props
2 parents cde03d6 + 2f9e131 commit 7ddafd9

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
<RepositoryUrl>https://github.com/managedcode/Communication</RepositoryUrl>
1818
<PackageProjectUrl>https://github.com/managedcode/Communication</PackageProjectUrl>
1919
<Product>Managed Code - Communication</Product>
20-
<Version>2.0.23</Version>
21-
<PackageVersion>2.0.23</PackageVersion>
20+
<Version>2.0.24</Version>
21+
<PackageVersion>2.0.24</PackageVersion>
2222

2323
</PropertyGroup>
2424
<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">

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)