1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2025-01-21 06:39:06 +00:00

Remove message from ping response

This commit is contained in:
Mark McDowall 2021-12-04 13:29:45 -08:00
parent 75fc550a3f
commit 1603512ad6
2 changed files with 1 additions and 3 deletions

View file

@ -27,8 +27,7 @@ namespace NzbDrone.Http
{ {
return new PingResource return new PingResource
{ {
Status = "Error", Status = "Error"
Message = e.Message
}.AsResponse(Context, HttpStatusCode.InternalServerError); }.AsResponse(Context, HttpStatusCode.InternalServerError);
} }

View file

@ -3,6 +3,5 @@
public class PingResource public class PingResource
{ {
public string Status { get; set; } public string Status { get; set; }
public string Message { get; set; }
} }
} }