Fix empty receiver signature when sending

This commit is contained in:
Jonathan Jenne
2023-11-28 15:54:35 +01:00
parent 38577f66e0
commit 80246b8964
2 changed files with 13 additions and 12 deletions

View File

@@ -184,7 +184,6 @@ Partial Public Class frmEnvelopeEditor
Dim oEnvelope = Controller.Envelope
oEnvelope.Subject = oSubject
oEnvelope.Message = oMessage
oEnvelope.Receivers = Receivers.ToList
oEnvelope.Documents = Documents.ToList
If pWithValidation = True Then
@@ -195,7 +194,7 @@ Partial Public Class frmEnvelopeEditor
End If
End If
If Controller.CreateEnvelopeReceivers(oEnvelope.Receivers) = False Then
If Controller.CreateEnvelopeReceivers(Receivers.ToList) = False Then
MsgBox(Resources.Envelope.Error_when_saving_the_recipients, MsgBoxStyle.Critical, Text)
Return False
End If