Provide the base URL if possible for Sonarr/Radarr.

If the API returns a base URL that differs from the one currently set, output that in the error message.
Even though Sonarr/Radarr return a result here, they will fail for POST requests, so this does need to be set correctly.
This commit is contained in:
Jack Steel 2021-02-03 02:07:19 +13:00
commit a58a2a418e
9 changed files with 63 additions and 36 deletions

View file

@ -0,0 +1,8 @@
namespace Ombi.Core.Models
{
public class TesterResultModel
{
public bool IsValid { get; set; }
public string ExpectedSubDir { get; set; }
}
}