Skip to content

Commit f9b700e

Browse files
committed
remove space added to email list
1 parent cae8b59 commit f9b700e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Api/Tools/Models/Request/SendRequestModel.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ private Send ToSendBase(Send existingSend, ISendAuthorizationService authorizati
252252
{
253253
// normalize encoding
254254
var emails = Emails.Split(',', RemoveEmptyEntries | TrimEntries);
255-
existingSend.Emails = string.Join(", ", emails);
255+
existingSend.Emails = string.Join(",", emails);
256256
existingSend.Password = null;
257257
existingSend.AuthType = Core.Tools.Enums.AuthType.Email;
258258
}

0 commit comments

Comments
 (0)