From a0c1d12647589bade5cf12de4431d685fde93ab0 Mon Sep 17 00:00:00 2001 From: Tudor Stanciu Date: Sat, 28 Nov 2020 17:23:05 +0200 Subject: [PATCH] fix --- NetworkResurrector.Application/Services/PingService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NetworkResurrector.Application/Services/PingService.cs b/NetworkResurrector.Application/Services/PingService.cs index 8589afa..0f52bcb 100644 --- a/NetworkResurrector.Application/Services/PingService.cs +++ b/NetworkResurrector.Application/Services/PingService.cs @@ -35,7 +35,7 @@ namespace NetworkResurrector.Application.Services var builder = new StringBuilder(); builder.AppendLine($"Machine '{ipAddress}' has responded to ping."); - builder.AppendLine($"Address: {reply.Address.ToString()}"); + builder.AppendLine($"Address: {reply.Address}"); builder.AppendLine($"RoundTrip time: {reply.RoundtripTime}"); builder.AppendLine($"Time to live: {reply.Options.Ttl}"); builder.AppendLine($"Don't fragment: {reply.Options.DontFragment}");