From cd5532fa8f7ebbfaf942841398672bafb9a405d4 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Wed, 13 Oct 2021 20:42:47 +0100 Subject: [PATCH] fix(#4344): :bug: Fixed an issue where we errored on Plex Episode Scan Removed properties that are not used and do not need to be deseralised --- src/Ombi.Api.Plex/Models/Mediacontainer.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Ombi.Api.Plex/Models/Mediacontainer.cs b/src/Ombi.Api.Plex/Models/Mediacontainer.cs index c9f417a9c..b783eaa81 100644 --- a/src/Ombi.Api.Plex/Models/Mediacontainer.cs +++ b/src/Ombi.Api.Plex/Models/Mediacontainer.cs @@ -6,10 +6,6 @@ public class Mediacontainer { public int size { get; set; } public int totalSize { get; set; } - public bool allowSync { get; set; } - public string identifier { get; set; } - public string mediaTagPrefix { get; set; } - public int mediaTagVersion { get; set; } public string title1 { get; set; } public List Directory { get; set; } public string art { get; set; }