diff --git a/src/Ombi.Api.Plex/Models/Medium.cs b/src/Ombi.Api.Plex/Models/Medium.cs index b86c5c54d..ff9fab657 100644 --- a/src/Ombi.Api.Plex/Models/Medium.cs +++ b/src/Ombi.Api.Plex/Models/Medium.cs @@ -16,6 +16,6 @@ namespace Ombi.Api.Plex.Models public string videoFrameRate { get; set; } public string audioProfile { get; set; } public string videoProfile { get; set; } - public Part[] Part { get; set; } + //public Part[] Part { get; set; } } } \ No newline at end of file diff --git a/src/Ombi.Api.Plex/Models/Metadata.cs b/src/Ombi.Api.Plex/Models/Metadata.cs index e7fda9962..40c3cd5d0 100644 --- a/src/Ombi.Api.Plex/Models/Metadata.cs +++ b/src/Ombi.Api.Plex/Models/Metadata.cs @@ -26,7 +26,7 @@ namespace Ombi.Api.Plex.Models public int addedAt { get; set; } public int updatedAt { get; set; } public Genre[] Genre { get; set; } - public Role[] Role { get; set; } + //public Role[] Role { get; set; } public string primaryExtraKey { get; set; } public int parentRatingKey { get; set; } public int grandparentRatingKey { get; set; } @@ -44,7 +44,7 @@ namespace Ombi.Api.Plex.Models public string grandparentTheme { get; set; } public string chapterSource { get; set; } public Medium[] Media { get; set; } - public Director[] Director { get; set; } - public Writer[] Writer { get; set; } + // public Director[] Director { get; set; } + // public Writer[] Writer { get; set; } } } \ No newline at end of file diff --git a/src/Ombi.Api.Plex/Models/Stream.cs b/src/Ombi.Api.Plex/Models/Stream.cs index 532aaa705..b039a03d2 100644 --- a/src/Ombi.Api.Plex/Models/Stream.cs +++ b/src/Ombi.Api.Plex/Models/Stream.cs @@ -13,7 +13,7 @@ public float frameRate { get; set; } public bool hasScalingMatrix { get; set; } public int height { get; set; } - public int level { get; set; } + public string level { get; set; } public string profile { get; set; } public int refFrames { get; set; } public string scanType { get; set; } diff --git a/src/Ombi.Core/Senders/TvSender.cs b/src/Ombi.Core/Senders/TvSender.cs index e839e2a5b..97728da07 100644 --- a/src/Ombi.Core/Senders/TvSender.cs +++ b/src/Ombi.Core/Senders/TvSender.cs @@ -264,7 +264,14 @@ namespace Ombi.Core.Senders private async Task SendToSickRage(ChildRequests model, SickRageSettings settings, string qualityId = null) { var tvdbid = model.ParentRequest.TvDbId; - if (qualityId.HasValue()) { var id = qualityId; if (settings.Qualities.All(x => x.Value != id)) { qualityId = settings.QualityProfile; } } + if (qualityId.HasValue()) + { + var id = qualityId; + if (settings.Qualities.All(x => x.Value != id)) + { + qualityId = settings.QualityProfile; + } + } // Check if the show exists var existingShow = await SickRageApi.GetShow(tvdbid, settings.ApiKey, settings.FullUri); diff --git a/src/Ombi/ClientApp/app/services/settings.service.ts b/src/Ombi/ClientApp/app/services/settings.service.ts index 785e4e43f..e2974689f 100644 --- a/src/Ombi/ClientApp/app/services/settings.service.ts +++ b/src/Ombi/ClientApp/app/services/settings.service.ts @@ -116,7 +116,7 @@ export class SettingsService extends ServiceHelpers { } public getThemeContent(themeUrl: string): Observable { - return this.http.get(`${this.url}/themecontent?url=${themeUrl}`, {responseType: 'text', headers: this.headers}); + return this.http.get(`${this.url}/themecontent?url=${themeUrl}`, {responseType: "text", headers: this.headers}); } public getEmailNotificationSettings(): Observable {