Fix Unit & Integration tests

This commit is contained in:
Nikolaj Geisle
2022-02-11 14:27:04 +01:00
parent 83baba696c
commit 58f6226942
8 changed files with 22 additions and 21 deletions

View File

@@ -47,7 +47,7 @@ namespace Umbraco.Cms.Core.Models.Email
Subject = subject;
Body = body;
IsBodyHtml = isBodyHtml;
Attachments = attachments.ToList();
Attachments = attachments?.ToList();
}
}