From 84fab25af7b16cd94af8f0713f2f032f57b1cbbf Mon Sep 17 00:00:00 2001 From: RhinoRhys <41245810+RhinoRhys@users.noreply.github.com> Date: Thu, 2 May 2019 11:55:48 +0100 Subject: [PATCH] Changed: Improved templates for h264 & h265 custom formats (#3432) * Update CustomFormatService.cs resolves #3419 * Update CustomFormatService.cs * Update CustomFormatService.cs --- src/NzbDrone.Core/CustomFormats/CustomFormatService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/CustomFormats/CustomFormatService.cs b/src/NzbDrone.Core/CustomFormats/CustomFormatService.cs index 736794192..0624b4baf 100644 --- a/src/NzbDrone.Core/CustomFormats/CustomFormatService.cs +++ b/src/NzbDrone.Core/CustomFormats/CustomFormatService.cs @@ -191,8 +191,8 @@ public static Dictionary> Templates { "Easy", new List { - new CustomFormat("x264", "C_RX_(x|h)264"), - new CustomFormat("x265", "C_RX_(((x|h)265)|(HEVC))"), + new CustomFormat("x264", @"C_RX_(x|h)\.?264"), + new CustomFormat("x265", @"C_RX_(((x|h)\.?265)|(HEVC))"), new CustomFormat("Simple Hardcoded Subs", "C_RX_subs?"), new CustomFormat("Multi Language", "L_English", "L_French") }