From 409c74e9ea7f47cb74c40feb960118e1f6ba8e95 Mon Sep 17 00:00:00 2001 From: Christian Franchin Date: Thu, 14 May 2020 19:31:27 -0300 Subject: [PATCH] bjshare: Removed handling that removed the original audio from the details (#8638) since the tracker doesn't use it anymore and it was causing some issues --- src/Jackett.Common/Indexers/BJShare.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Jackett.Common/Indexers/BJShare.cs b/src/Jackett.Common/Indexers/BJShare.cs index 2aee91a48..12b0959e3 100644 --- a/src/Jackett.Common/Indexers/BJShare.cs +++ b/src/Jackett.Common/Indexers/BJShare.cs @@ -329,10 +329,6 @@ namespace Jackett.Common.Indexers release.Description = release.Description.Replace("4K", "2160p"); release.Description = release.Description.Replace("SD", "480p"); release.Description = release.Description.Replace("Dual Áudio", "Dual"); - // If it ain't nacional there will be the type of the audio / original audio - if (!release.Description.Contains("Nacional")) - release.Description = Regex.Replace( - release.Description, @"(Dual|Legendado|Dublado) \/ (.*?) \/", "$1 /"); // Adjust the description in order to can be read by Radarr and Sonarr var cleanDescription = release.Description.Trim().TrimStart('[').TrimEnd(']');