fix udp server messages

This commit is contained in:
LukePulverenti
2013-03-17 12:31:02 -04:00
parent 3a4befff6b
commit 88d5e34210
2 changed files with 2 additions and 2 deletions

View File

@@ -296,7 +296,7 @@ namespace MediaBrowser.Server.Implementations.ServerManager
_logger.Info("Received UDP server request from " + e.RemoteEndPoint);
// Send a response back with our ip address and port
var response = String.Format("MediaBrowser{0}|{1}:{2}", context, _networkManager.GetLocalIpAddress(), _kernel.UdpServerPortNumber);
var response = String.Format("MediaBrowser{0}|{1}:{2}", context, _networkManager.GetLocalIpAddress(), ConfigurationManager.Configuration.HttpServerPortNumber);
await UdpServer.SendAsync(Encoding.UTF8.GetBytes(response), e.RemoteEndPoint);
}