Browse Source

Added ConfigureAwait(false) to provider calls

LukePulverenti Luke Pulverenti luke pulverenti 13 năm trước cách đây
mục cha
commit
1c5f728ec2
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      MediaBrowser.Controller/Kernel.cs

+ 1 - 1
MediaBrowser.Controller/Kernel.cs

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