diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-04 17:43:02 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2014-11-04 17:43:02 -0500 |
| commit | 0df202e397bab18325bd461ee6878fc3908423a8 (patch) | |
| tree | f03f4972e019801937ead8d535b252d1a8b80afe /MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs | |
| parent | 60d3f475033cef64a8f3153beb910e48529c8e16 (diff) | |
update connect login
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs')
| -rw-r--r-- | MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs b/MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs index 48de68e51..295f0c775 100644 --- a/MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs +++ b/MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs @@ -66,7 +66,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer.Security if (!authAttribtues.AllowLocal || !req.IsLocal) { if (!string.IsNullOrWhiteSpace(auth.Token) || - !_config.Configuration.InsecureApps5.Contains(auth.Client ?? string.Empty, StringComparer.OrdinalIgnoreCase)) + !_config.Configuration.InsecureApps6.Contains(auth.Client ?? string.Empty, StringComparer.OrdinalIgnoreCase)) { var valid = IsValidConnectKey(auth.Token); |
