mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-16 07:12:18 +01:00
Log exception where possible
This commit is contained in:
@@ -310,11 +310,16 @@ namespace Rssdp.Infrastructure
|
||||
|
||||
try
|
||||
{
|
||||
await _CommsServer.SendMessage(System.Text.Encoding.UTF8.GetBytes(message), endPoint, receivedOnlocalIpAddress, cancellationToken).ConfigureAwait(false);
|
||||
await _CommsServer.SendMessage(
|
||||
System.Text.Encoding.UTF8.GetBytes(message),
|
||||
endPoint,
|
||||
receivedOnlocalIpAddress,
|
||||
cancellationToken)
|
||||
.ConfigureAwait(false);
|
||||
}
|
||||
catch (Exception)
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
|
||||
//WriteTrace(String.Format("Sent search response to " + endPoint.ToString()), device);
|
||||
|
||||
Reference in New Issue
Block a user