Skip to content

Commit b34d74a

Browse files
committed
.
1 parent 757ff7f commit b34d74a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

SMTP2Graph/Worker.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ private async Task HandleConnection(TcpClient client, Stream stream, int Port)
9696
var sw = new StreamWriter(stream);
9797
var sr = new StreamReader(stream);
9898
sw.AutoFlush = true;
99-
sw.Write($"220 {Environment.MachineName} SMTP2Graph Service ready\r\n");
99+
await sw.WriteAsyncExt($"220 {Environment.MachineName} SMTP2Graph Service ready", Logger, Port);
100100
while (true)
101101
{
102102
string? msg = null;

0 commit comments

Comments
 (0)