1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-24 03:33:31 +01:00

Fixed: CF Resolution Specification not matching correctly

This commit is contained in:
Qstick 2022-08-19 18:57:40 -05:00
parent 75919cf779
commit 86b895abe0

View File

@ -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
}
}