diff options
| author | Anthony Lavado <anthonylavado@users.noreply.github.com> | 2019-08-28 09:38:12 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-28 09:38:12 -0400 |
| commit | a2fd82137c2b587552399ae6a690f91c47b25ad4 (patch) | |
| tree | 611299b11f232966baf0e46b064e66b83c8b48de /MediaBrowser.Api/UserService.cs | |
| parent | 874f02631b9be1cd51dafe9df15c5660f1e0e575 (diff) | |
| parent | efc4805233fe8a42215198db0baa0f68e012c1f8 (diff) | |
Merge pull request #1676 from Bond-009/login
Fix login
Diffstat (limited to 'MediaBrowser.Api/UserService.cs')
| -rw-r--r-- | MediaBrowser.Api/UserService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/UserService.cs b/MediaBrowser.Api/UserService.cs index f08d070ca..0192805b8 100644 --- a/MediaBrowser.Api/UserService.cs +++ b/MediaBrowser.Api/UserService.cs @@ -418,7 +418,7 @@ namespace MediaBrowser.Api return ToOptimizedResult(result); } - catch(SecurityException e) + catch (SecurityException e) { // rethrow adding IP address to message throw new SecurityException($"[{Request.RemoteIp}] {e.Message}"); |
