diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-27 02:25:35 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-12-27 02:25:35 -0500 |
| commit | 8999198cca1f3808f01672f6126e72df598ec24e (patch) | |
| tree | 75b1214d0c059ad92c995d1a153738d472f2dada /Emby.Server.Implementations | |
| parent | 0b53004c61da66f99dd589a49bd9de948c32e6f8 (diff) | |
update connect error responses
Diffstat (limited to 'Emby.Server.Implementations')
| -rw-r--r-- | Emby.Server.Implementations/Connect/ConnectManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Emby.Server.Implementations/Connect/ConnectManager.cs b/Emby.Server.Implementations/Connect/ConnectManager.cs index b7faaa901..8c8b7b026 100644 --- a/Emby.Server.Implementations/Connect/ConnectManager.cs +++ b/Emby.Server.Implementations/Connect/ConnectManager.cs @@ -570,9 +570,9 @@ namespace Emby.Server.Implementations.Connect } catch (HttpException ex) { - if (!ex.StatusCode.HasValue) + if (!ex.StatusCode.HasValue || ex.IsTimedOut) { - throw; + throw new Exception("Unable to invite guest, " + ex.Message, ex); } // If they entered a username, then whatever the error is just throw it, for example, user not found |
