diff --git a/src/NzbDrone.Core/MediaFiles/MediaInfo/MediaInfoModel.cs b/src/NzbDrone.Core/MediaFiles/MediaInfo/MediaInfoModel.cs index 723cbdcf30..a3eea2b1fa 100644 --- a/src/NzbDrone.Core/MediaFiles/MediaInfo/MediaInfoModel.cs +++ b/src/NzbDrone.Core/MediaFiles/MediaInfo/MediaInfoModel.cs @@ -1,6 +1,5 @@ using System; using System.Collections.Generic; -using System.Text.Json.Serialization; using FFMpegCore; using NzbDrone.Core.Datastore; @@ -12,12 +11,6 @@ public class MediaInfoModel : IEmbeddedDocument public string RawFrameData { get; set; } public int SchemaRevision { get; set; } - [JsonIgnore] - public IMediaAnalysis Analysis => FFProbe.Analyse(RawStreamData); - - [JsonIgnore] - public IMediaAnalysis Frames => FFProbe.Analyse(RawFrameData); - public string ContainerFormat { get; set; } public string VideoFormat { get; set; } diff --git a/src/NzbDrone.Core/Notifications/Notifiarr/NotifiarrProxy.cs b/src/NzbDrone.Core/Notifications/Notifiarr/NotifiarrProxy.cs index 71a7c44e9a..2f7468b4f3 100644 --- a/src/NzbDrone.Core/Notifications/Notifiarr/NotifiarrProxy.cs +++ b/src/NzbDrone.Core/Notifications/Notifiarr/NotifiarrProxy.cs @@ -1,10 +1,8 @@ -using System; -using System.Collections.Generic; +using System; using System.Collections.Specialized; using System.Net; using FluentValidation.Results; using NLog; -using NzbDrone.Common.EnvironmentInfo; using NzbDrone.Common.Http; namespace NzbDrone.Core.Notifications.Notifiarr