aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/LibraryService.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-11-04 11:20:44 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-11-04 11:20:44 -0500
commitf1a7d9064063d1cc73a0fe9ed3f1fd9b5f5b5f55 (patch)
tree8a6025c4ab086da29aa9da6b24d81d9b8dd68c5d /MediaBrowser.Api/LibraryService.cs
parent4bbe8acb5cfc5c4a0c392db71d2858589c8f345f (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.cs3
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)