Skip to content

Commit

Permalink
fix: .NET build
Browse files Browse the repository at this point in the history
  • Loading branch information
jeanpierrefortune committed Dec 6, 2023
1 parent 6cb4722 commit e6b8fa0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion client/dotnet/domain/api/MainServiceApiAdapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ private CardSelectionResponse ProcessCardSelectionRequest(CardSelector cardSelec

CardSelectionResponse cardSelectionResponse = new CardSelectionResponse
{
HasMatched = cardSelectionRequest.SuccessfulSelectionStatusWords.Contains(selectAppResponse.StatusWord),
HasMatched = cardSelectionRequest.SuccessfulSelectionStatusWords?.Contains(selectAppResponse.StatusWord) ?? false,
PowerOnData = _reader.GetPowerOnData(),
SelectApplicationResponse = selectAppResponse,
CardResponse = cardResponse
Expand Down
1 change: 0 additions & 1 deletion client/dotnet/domain/data/command/CardSelector.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

using App.domain.utils;
using Newtonsoft.Json;
using System.Collections.Generic;

namespace App.domain.data.command
{
Expand Down

0 comments on commit e6b8fa0

Please sign in to comment.