n3wt0n / AzureWebAppSSLManager

Acquires and manages free SSL certificates for Azure Web App and Azure Functions applications.
MIT License
76 stars 29 forks source link

Change comparison method #9

Closed n3wt0n closed 5 years ago

n3wt0n commented 5 years ago

You should also change the compares to something like this: .SingleOrDefault(w => w.Name.Equals(_webAppName, StringComparison.CurrentCultureIgnoreCase)); Your code was lowering one side but not the other.

Originally posted by @bbakermmc in https://github.com/n3wt0n/AzureWebAppSSLManager/issues/8#issuecomment-528013733