forked from serverkomplex/ShoutcastBridge
Remove asynchronous write processing. I wonder if that caused some Shoutcast clients to break.
parent
5ab5a5ba26
commit
43fc3d1f80
|
@ -107,7 +107,7 @@ namespace AFR.ShoutcastBridge
|
|||
{
|
||||
if (_ns == null || _sr == null || _sw == null || _tcp == null || !_tcp.Connected)
|
||||
return;
|
||||
_sw.BaseStream.WriteAsync(data, 0, data.Length);
|
||||
_sw.BaseStream.Write(data, 0, data.Length);
|
||||
}
|
||||
catch (Exception error)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue