Skip to content

Commit a156ead

Browse files
author
TheObliterator
committed
Fixed 'Realm' mapping in web.config.
Realm key did not match documentation/sample web.config meaning the realm was always set to 'SecureZone'.
1 parent 3b923d5 commit a156ead

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

HttpAuthModule/CredentialAuthStrategy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ internal abstract class CredentialAuthStrategy : IAuthStrategy
1212

1313
public CredentialAuthStrategy()
1414
{
15-
Realm = Config.Get("HttpAuth.Realm", "SecureZone");
15+
Realm = Config.Get("Realm", "SecureZone");
1616

1717
Credentials = Config.Get("Credentials")
1818
.Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries)

0 commit comments

Comments
 (0)