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:
parent
75fc550a3f
commit
1603512ad6
2 changed files with 1 additions and 3 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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; }
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue