aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-06-03 13:54:55 -0600
committercrobibero <cody@robibe.ro>2020-06-03 13:54:55 -0600
commit2ac111dedba416850d526f9f60dbf82f2bd28edd (patch)
tree11a4582801f2a8ee5c6552e8530c196553e90993 /Emby.Server.Implementations
parent9661135b5b089b57e19cca4ac4f5d17ab475c8d6 (diff)
add missing ConfigureAwait
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/EntryPoints/ServerEventNotifier.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/EntryPoints/ServerEventNotifier.cs b/Emby.Server.Implementations/EntryPoints/ServerEventNotifier.cs
index 365e4dc54..11ba6f748 100644
--- a/Emby.Server.Implementations/EntryPoints/ServerEventNotifier.cs
+++ b/Emby.Server.Implementations/EntryPoints/ServerEventNotifier.cs
@@ -88,17 +88,17 @@ namespace Emby.Server.Implementations.EntryPoints
private async void OnPackageInstalling(object sender, InstallationInfo e)
{
- await SendMessageToAdminSessions("PackageInstalling", e);
+ await SendMessageToAdminSessions("PackageInstalling", e).ConfigureAwait(false);
}
private async void OnPackageInstallationCancelled(object sender, InstallationInfo e)
{
- await SendMessageToAdminSessions("PackageInstallationCancelled", e);
+ await SendMessageToAdminSessions("PackageInstallationCancelled", e).ConfigureAwait(false);
}
private async void OnPackageInstallationCompleted(object sender, InstallationInfo e)
{
- await SendMessageToAdminSessions("PackageInstallationCompleted", e);
+ await SendMessageToAdminSessions("PackageInstallationCompleted", e).ConfigureAwait(false);
}
private async void OnPackageInstallationFailed(object sender, InstallationFailedEventArgs e)
@@ -118,7 +118,7 @@ namespace Emby.Server.Implementations.EntryPoints
/// <param name="e">The e.</param>
private async void OnPluginUninstalled(object sender, IPlugin e)
{
- await SendMessageToAdminSessions("PluginUninstalled", e);
+ await SendMessageToAdminSessions("PluginUninstalled", e).ConfigureAwait(false);
}
/// <summary>