diff --git a/src/Altinn.Notifications.Core/Models/Notification/EmailSendOperationResult.cs b/src/Altinn.Notifications.Core/Models/Notification/EmailSendOperationResult.cs index d1de4f2e..5b84d5bc 100644 --- a/src/Altinn.Notifications.Core/Models/Notification/EmailSendOperationResult.cs +++ b/src/Altinn.Notifications.Core/Models/Notification/EmailSendOperationResult.cs @@ -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 {