From 86b895abe016ec56a609486737571d3cb5465ccd Mon Sep 17 00:00:00 2001 From: Qstick Date: Fri, 19 Aug 2022 18:57:40 -0500 Subject: [PATCH] Fixed: CF Resolution Specification not matching correctly --- src/NzbDrone.Core/Parser/QualityParser.cs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/NzbDrone.Core/Parser/QualityParser.cs b/src/NzbDrone.Core/Parser/QualityParser.cs index 031190e7f..d52da4a82 100644 --- a/src/NzbDrone.Core/Parser/QualityParser.cs +++ b/src/NzbDrone.Core/Parser/QualityParser.cs @@ -672,13 +672,13 @@ namespace NzbDrone.Core.Parser public enum Resolution { - R360P, - R480P, - R540p, - R576p, - R720p, - R1080p, - R2160p, - Unknown + R360P = 360, + R480P = 480, + R540p = 540, + R576p = 576, + R720p = 720, + R1080p = 1080, + R2160p = 2160, + Unknown = 0 } }