From bae89ee8243fea06ba1e17c1f1ed6da890e9f08c Mon Sep 17 00:00:00 2001 From: LukePulverenti Date: Sat, 16 Mar 2013 12:41:49 -0400 Subject: fix duplicate connections on the dashboard --- MediaBrowser.Server.Implementations/Updates/InstallationManager.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'MediaBrowser.Server.Implementations/Updates/InstallationManager.cs') diff --git a/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs b/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs index bdbf3896f..271d3d877 100644 --- a/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs +++ b/MediaBrowser.Server.Implementations/Updates/InstallationManager.cs @@ -375,8 +375,10 @@ namespace MediaBrowser.Server.Implementations.Updates throw; } - catch + catch (Exception ex) { + _logger.ErrorException("Package installation failed", ex); + lock (CurrentInstallations) { CurrentInstallations.Remove(tuple); -- cgit v1.2.3