Fixed #33 we now have SSL options for Sonarr and CP

This commit is contained in:
Jamie Rees 2016-03-18 21:39:05 +00:00
parent 87b497e48e
commit 76808adba2
4 changed files with 32 additions and 4 deletions

View file

@ -39,13 +39,14 @@ namespace PlexRequests.Core.SettingModels
public string QualityProfile { get; set; }
public bool SeasonFolders { get; set; }
public string RootPath { get; set; }
public bool Ssl { get; set; }
[JsonIgnore]
public Uri FullUri
{
get
{
var formatted = Ip.ReturnUri(Port);
var formatted = Ip.ReturnUri(Port, Ssl);
return formatted;
}
}