diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-25 14:05:21 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-09-25 14:05:21 -0400 |
| commit | 736095049616d7cbf575106fb27793b486c41c46 (patch) | |
| tree | 6edd60eae7eed1fde65b9a6cff235462c070c317 /MediaBrowser.ServerApplication | |
| parent | 2d9b48d00fd31aaa96676c82a054b2794493fbf9 (diff) | |
reduce locking on folder children
Diffstat (limited to 'MediaBrowser.ServerApplication')
| -rw-r--r-- | MediaBrowser.ServerApplication/App.xaml.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.ServerApplication/App.xaml.cs b/MediaBrowser.ServerApplication/App.xaml.cs index 706206d3a5..ad4727023f 100644 --- a/MediaBrowser.ServerApplication/App.xaml.cs +++ b/MediaBrowser.ServerApplication/App.xaml.cs @@ -95,7 +95,7 @@ namespace MediaBrowser.ServerApplication EventHelper.FireEventIfNotNull(AppStarted, this, EventArgs.Empty, _logger); - await task.ConfigureAwait(false); + await task; } catch (Exception ex) { |
