Skip to content

Commit

Permalink
check on id or operationId defined (#467)
Browse files Browse the repository at this point in the history
  • Loading branch information
acn-sbuad authored Mar 18, 2024
1 parent 8e11d1f commit 2b089f9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public static bool TryParse(string input, out EmailSendOperationResult value)
parsedOutput = Deserialize(input!);

value = parsedOutput!;
return value.NotificationId != Guid.Empty;
return value.NotificationId != Guid.Empty || !string.IsNullOrEmpty(value.OperationId);
}
catch
{
Expand Down

0 comments on commit 2b089f9

Please sign in to comment.