add cancel button to identify popup

This commit is contained in:
Luke Pulverenti
2014-03-09 22:33:49 -04:00
parent e657a1cdab
commit 9c1ce92c29
2 changed files with 16 additions and 9 deletions

View File

@@ -449,7 +449,14 @@ namespace MediaBrowser.Server.Implementations.IO
var paths = _affectedPaths.Keys.ToList();
_affectedPaths.Clear();
await ProcessPathChanges(paths).ConfigureAwait(false);
try
{
await ProcessPathChanges(paths).ConfigureAwait(false);
}
catch (Exception ex)
{
Logger.ErrorException("Error processing directory changes", ex);
}
}
private void DisposeTimer()