From ce294ba6de55c6e8641f317904c6345a527bbcd9 Mon Sep 17 00:00:00 2001 From: baliasnyifeliks Date: Wed, 14 Jan 2026 13:31:49 +0200 Subject: [PATCH] fix(config): remove deprecated base64 entry from service configurations The base64 entry "bGFtcGE=" (decoding to "lampa") was removed from all service configurations across multiple modules. This entry was likely deprecated or no longer needed, as it was consistently removed from the same position in the base64 string arrays across all modified files. The change affects 13 files across different service modules, ensuring consistency in the configuration format. --- Anihub/AnihubInvoke.cs | 1 - Anihub/Controller.cs | 1 - AnimeON/AnimeONInvoke.cs | 1 - AnimeON/Controller.cs | 1 - Bamboo/BambooInvoke.cs | 1 - CikavaIdeya/CikavaIdeyaInvoke.cs | 1 - CikavaIdeya/Controller.cs | 1 - StarLight/StarLightInvoke.cs | 1 - UAKino/UAKinoInvoke.cs | 1 - UaTUT/UaTUTInvoke.cs | 1 - Uaflix/Controller.cs | 1 - Uaflix/UaflixInvoke.cs | 1 - Unimay/UnimayInvoke.cs | 1 - 13 files changed, 13 deletions(-) diff --git a/Anihub/AnihubInvoke.cs b/Anihub/AnihubInvoke.cs index 1b46487..4072a38 100644 --- a/Anihub/AnihubInvoke.cs +++ b/Anihub/AnihubInvoke.cs @@ -25,7 +25,6 @@ namespace Anihub { "c3ZpdGFubW92aWU=", "cG9ydGFsLXR2", - "bGFtcGE=", } .Select(base64 => Encoding.UTF8.GetString(Convert.FromBase64String(base64))), StringComparer.OrdinalIgnoreCase diff --git a/Anihub/Controller.cs b/Anihub/Controller.cs index 0a51005..1024de7 100644 --- a/Anihub/Controller.cs +++ b/Anihub/Controller.cs @@ -26,7 +26,6 @@ namespace Anihub { "c3ZpdGFubW92aWU=", "cG9ydGFsLXR2", - "bGFtcGE=", } .Select(base64 => Encoding.UTF8.GetString(Convert.FromBase64String(base64))), StringComparer.OrdinalIgnoreCase diff --git a/AnimeON/AnimeONInvoke.cs b/AnimeON/AnimeONInvoke.cs index b5ad2c1..13f3b68 100644 --- a/AnimeON/AnimeONInvoke.cs +++ b/AnimeON/AnimeONInvoke.cs @@ -20,7 +20,6 @@ namespace AnimeON { "c3ZpdGFubW92aWU=", "cG9ydGFsLXR2", - "bGFtcGE=", } .Select(base64 => Encoding.UTF8.GetString(Convert.FromBase64String(base64))), StringComparer.OrdinalIgnoreCase diff --git a/AnimeON/Controller.cs b/AnimeON/Controller.cs index 2d9b9be..b2388be 100644 --- a/AnimeON/Controller.cs +++ b/AnimeON/Controller.cs @@ -25,7 +25,6 @@ namespace AnimeON.Controllers { "c3ZpdGFubW92aWU=", "cG9ydGFsLXR2", - "bGFtcGE=", } .Select(base64 => Encoding.UTF8.GetString(Convert.FromBase64String(base64))), StringComparer.OrdinalIgnoreCase diff --git a/Bamboo/BambooInvoke.cs b/Bamboo/BambooInvoke.cs index 21cffd4..8818135 100644 --- a/Bamboo/BambooInvoke.cs +++ b/Bamboo/BambooInvoke.cs @@ -22,7 +22,6 @@ namespace Bamboo { "c3ZpdGFubW92aWU=", "cG9ydGFsLXR2", - "bGFtcGE=", } .Select(base64 => Encoding.UTF8.GetString(Convert.FromBase64String(base64))), StringComparer.OrdinalIgnoreCase diff --git a/CikavaIdeya/CikavaIdeyaInvoke.cs b/CikavaIdeya/CikavaIdeyaInvoke.cs index 83f986c..66559c1 100644 --- a/CikavaIdeya/CikavaIdeyaInvoke.cs +++ b/CikavaIdeya/CikavaIdeyaInvoke.cs @@ -21,7 +21,6 @@ namespace CikavaIdeya { "c3ZpdGFubW92aWU=", "cG9ydGFsLXR2", - "bGFtcGE=", } .Select(base64 => Encoding.UTF8.GetString(Convert.FromBase64String(base64))), StringComparer.OrdinalIgnoreCase diff --git a/CikavaIdeya/Controller.cs b/CikavaIdeya/Controller.cs index 1b9e61c..99ea84e 100644 --- a/CikavaIdeya/Controller.cs +++ b/CikavaIdeya/Controller.cs @@ -24,7 +24,6 @@ namespace CikavaIdeya.Controllers { "c3ZpdGFubW92aWU=", "cG9ydGFsLXR2", - "bGFtcGE=", } .Select(base64 => Encoding.UTF8.GetString(Convert.FromBase64String(base64))), StringComparer.OrdinalIgnoreCase diff --git a/StarLight/StarLightInvoke.cs b/StarLight/StarLightInvoke.cs index ad414d5..d4d2979 100644 --- a/StarLight/StarLightInvoke.cs +++ b/StarLight/StarLightInvoke.cs @@ -24,7 +24,6 @@ namespace StarLight { "c3ZpdGFubW92aWU=", "cG9ydGFsLXR2", - "bGFtcGE=", } .Select(base64 => Encoding.UTF8.GetString(Convert.FromBase64String(base64))), StringComparer.OrdinalIgnoreCase diff --git a/UAKino/UAKinoInvoke.cs b/UAKino/UAKinoInvoke.cs index 9bfadb2..2725d5e 100644 --- a/UAKino/UAKinoInvoke.cs +++ b/UAKino/UAKinoInvoke.cs @@ -31,7 +31,6 @@ namespace UAKino { "c3ZpdGFubW92aWU=", "cG9ydGFsLXR2", - "bGFtcGE=", } .Select(base64 => Encoding.UTF8.GetString(Convert.FromBase64String(base64))), StringComparer.OrdinalIgnoreCase diff --git a/UaTUT/UaTUTInvoke.cs b/UaTUT/UaTUTInvoke.cs index 3171e31..aa2613c 100644 --- a/UaTUT/UaTUTInvoke.cs +++ b/UaTUT/UaTUTInvoke.cs @@ -22,7 +22,6 @@ namespace UaTUT { "c3ZpdGFubW92aWU=", "cG9ydGFsLXR2", - "bGFtcGE=", } .Select(base64 => Encoding.UTF8.GetString(Convert.FromBase64String(base64))), StringComparer.OrdinalIgnoreCase diff --git a/Uaflix/Controller.cs b/Uaflix/Controller.cs index 074b355..5f9d952 100644 --- a/Uaflix/Controller.cs +++ b/Uaflix/Controller.cs @@ -26,7 +26,6 @@ namespace Uaflix.Controllers { "c3ZpdGFubW92aWU=", "cG9ydGFsLXR2", - "bGFtcGE=", } .Select(base64 => Encoding.UTF8.GetString(Convert.FromBase64String(base64))), StringComparer.OrdinalIgnoreCase diff --git a/Uaflix/UaflixInvoke.cs b/Uaflix/UaflixInvoke.cs index fcca4ec..224f245 100644 --- a/Uaflix/UaflixInvoke.cs +++ b/Uaflix/UaflixInvoke.cs @@ -26,7 +26,6 @@ namespace Uaflix { "c3ZpdGFubW92aWU=", "cG9ydGFsLXR2", - "bGFtcGE=", } .Select(base64 => Encoding.UTF8.GetString(Convert.FromBase64String(base64))), StringComparer.OrdinalIgnoreCase diff --git a/Unimay/UnimayInvoke.cs b/Unimay/UnimayInvoke.cs index 4591a75..e8a1277 100644 --- a/Unimay/UnimayInvoke.cs +++ b/Unimay/UnimayInvoke.cs @@ -20,7 +20,6 @@ namespace Unimay { "c3ZpdGFubW92aWU=", "cG9ydGFsLXR2", - "bGFtcGE=", } .Select(base64 => Encoding.UTF8.GetString(Convert.FromBase64String(base64))), StringComparer.OrdinalIgnoreCase