diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-04 11:20:44 -0500 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-11-04 11:20:44 -0500 |
| commit | f1a7d9064063d1cc73a0fe9ed3f1fd9b5f5b5f55 (patch) | |
| tree | 8a6025c4ab086da29aa9da6b24d81d9b8dd68c5d /MediaBrowser.Api/LibraryService.cs | |
| parent | 4bbe8acb5cfc5c4a0c392db71d2858589c8f345f (diff) | |
fix scan stopping and restarting itself multiple times when adding/removing collections
Diffstat (limited to 'MediaBrowser.Api/LibraryService.cs')
| -rw-r--r-- | MediaBrowser.Api/LibraryService.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Api/LibraryService.cs b/MediaBrowser.Api/LibraryService.cs index 202d372e8..aa2264398 100644 --- a/MediaBrowser.Api/LibraryService.cs +++ b/MediaBrowser.Api/LibraryService.cs @@ -495,8 +495,7 @@ namespace MediaBrowser.Api { try { - await - parent.ValidateChildren(new Progress<double>(), CancellationToken.None) + await parent.ValidateChildren(new Progress<double>(), CancellationToken.None) .ConfigureAwait(false); } catch (Exception ex) |
