From 2dab0663f330a3ff49906b84f0b2d506d3a2f867 Mon Sep 17 00:00:00 2001 From: Marland Sitt Date: Wed, 22 Jan 2025 22:01:22 -0800 Subject: [PATCH] AnimeBytes ; Fix typo in configuration item description (#15832) --- .../Models/IndexerConfig/Bespoke/ConfigurationDataAnimeBytes.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataAnimeBytes.cs b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataAnimeBytes.cs index 3c8132072..29756ab20 100644 --- a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataAnimeBytes.cs +++ b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataAnimeBytes.cs @@ -25,7 +25,7 @@ namespace Jackett.Common.Models.IndexerConfig.Bespoke IncludeRaw = new BoolConfigurationItem("Include RAW in results") { Value = false }; SearchByYear = new BoolConfigurationItem("Search by year as a different argument in the request") { Value = false }; //DateWarning = new DisplayItem("This tracker does not supply upload dates so they are based off year of release.") { Name = "DateWarning" }; - PadEpisode = new BoolConfigurationItem("Pad episode number for Sonarr compatability") { Value = false }; + PadEpisode = new BoolConfigurationItem("Pad episode number for Sonarr compatibility") { Value = false }; AddJapaneseTitle = new BoolConfigurationItem("Add releases for Japanese Title") { Value = false }; AddRomajiTitle = new BoolConfigurationItem("Add releases for Romaji Title") { Value = false }; AddAlternativeTitles = new BoolConfigurationItem("Add releases for Alternative Title(s)") { Value = false };