Skip to content

Commit b8282b3

Browse files
committed
Fixing updating of the eForm.
1 parent 33ef372 commit b8282b3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eFormAPI/Plugins/OuterInnerResource.Pn/OuterInnerResource.Pn/Handlers/OuterInnerResourceUpdateHandler.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ private async Task UpdateSitesDeployed(string oldName, string newName,
105105
WriteLogEntry("OuterInnerResourceUpdateHandler: UpdateSitesDeployed called");
106106
var siteIds = new List<int>();
107107

108-
if (oldName != newName)
108+
if (oldName != newName || oldName == null && newName == null)
109109
{
110110
var outerInnerResourceSites = await _dbContext.OuterInnerResourceSites.Where(
111111
x => x.OuterInnerResourceId == outerInnerResource.Id

0 commit comments

Comments
 (0)