refactor(uakino): remove PlayerJS decode fallback from Ashdi resolver

Drop the secondary PlayerJsDecoder extraction path and keep complex VOD
payloads untouched by returning the original value. Align the module
manifest by removing the now-unused shared PlayerJsDecoder dependency.
This commit is contained in:
Felix 2026-05-15 19:30:42 +03:00
parent 90e7ec4602
commit 9e677b4113
2 changed files with 2 additions and 14 deletions

View File

@ -237,18 +237,7 @@ namespace LME.UAKino
} }
} }
// Складний плеєр — пробуємо PlayerJsDecoder // Складний масив — не парсимо, повертаємо як є
try
{
var playerPayload = LME.Common.Playerjs.PlayerJsDecoder.ExtractPlayerPayload(html);
if (playerPayload?.FilePayload is string strUrl && !string.IsNullOrEmpty(strUrl))
{
_onLog?.Invoke($"UAKino resolved Ashdi (PlayerJsDecoder): {strUrl}");
return strUrl;
}
}
catch { }
return vodUrl; return vodUrl;
} }
catch (Exception ex) catch (Exception ex)

View File

@ -7,7 +7,6 @@
"../LME.Shared/GlobalUsings.cs", "../LME.Shared/GlobalUsings.cs",
"../LME.Shared/Online/OnlineRegistry.cs", "../LME.Shared/Online/OnlineRegistry.cs",
"../LME.Shared/Update/ModuleUpdateService.cs", "../LME.Shared/Update/ModuleUpdateService.cs",
"../LME.Shared/Apn/ApnHelper.cs", "../LME.Shared/Apn/ApnHelper.cs"
"../LME.Shared/Playerjs/PlayerJsDecoder.cs"
] ]
} }