Skip to content
This repository was archived by the owner on Jan 19, 2021. It is now read-only.

Commit 2ea4514

Browse files
committed
Fixed issue with SiteLogo handling while saving a template
1 parent 1c4471a commit 2ea4514

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Commands/Provisioning/Tenant/SaveTenantTemplate.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ private void ProcessFiles(string templateFileName, FileConnectorBase fileSystemC
133133
}
134134
foreach (var template in Template.Templates)
135135
{
136-
if(template.WebSettings != null && template.WebSettings.SiteLogo != null)
136+
if(template.WebSettings != null && !String.IsNullOrEmpty(template.WebSettings.SiteLogo))
137137
{
138138
// is it a file?
139139
var isFile = false;

0 commit comments

Comments
 (0)