Skip to content
This repository was archived by the owner on Jul 22, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Autodiscover/DirectoryHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ private List<string> GetScpUrlList(
scpPtrLdapPath = scpDirEntry.Properties["serviceBindingInformation"][0] as string;

// If the SCP pointer matches the user's domain, then restart search from that point.
if (entryKeywords.CaseInsensitiveContains(domainMatch))
if (scpPtrLdapPath.CaseInsensitiveContains(domainMatch))
{
// Stop the current search, start another from a new location.
this.TraceMessage(
Expand Down Expand Up @@ -404,4 +404,4 @@ internal ExchangeServiceBase Service

#endregion
}
}
}