Skip to content

Commit 116eef5

Browse files
committed
also make hashcode case insensitive
1 parent ce60e2a commit 116eef5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

roles/lib/files/FWO.Services/AppServerComparer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public int GetHashCode(ModellingAppServerWrapper appServerWrapper)
3535

3636
public int GetHashCode(ModellingAppServer appServer)
3737
{
38-
string appServerName = AppServerHelper.ConstructSanitizedAppServerName(appServer, NamingConvention).Trim();
38+
string appServerName = AppServerHelper.ConstructSanitizedAppServerName(appServer, NamingConvention).ToLower().Trim();
3939
return HashCode.Combine(appServerName);
4040
}
4141
}

0 commit comments

Comments
 (0)