Added ConfigureAwait(false) to provider calls

This commit is contained in:
LukePulverenti Luke Pulverenti luke pulverenti 2012-08-21 14:47:01 -04:00
parent d44f264ac0
commit 1c5f728ec2

View file

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