Browse Source

Added ConfigureAwait(false) to provider calls

LukePulverenti Luke Pulverenti luke pulverenti 13 years ago
parent
commit
1c5f728ec2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      MediaBrowser.Controller/Kernel.cs

+ 1 - 1
MediaBrowser.Controller/Kernel.cs

@@ -245,7 +245,7 @@ namespace MediaBrowser.Controller
                     continue;
                     continue;
                 }
                 }
 
 
-                await provider.Fetch(item, args);
+                await provider.Fetch(item, args).ConfigureAwait(false);
             }
             }
         }
         }