refactor(uakino): stop appending multivoice query in Ashdi VOD resolver

Remove automatic `?multivoice` query injection when resolving Ashdi VOD
URLs. Each VOD now resolves through its own stream endpoint without
forcing voice aggregation into a single mixed array.

This keeps stream selection isolated per item and avoids unintended
cross-voice merging during direct link resolution.
This commit is contained in:
Felix 2026-05-15 19:58:20 +03:00
parent 6800c5d393
commit 460f527a6f

View File

@ -204,8 +204,8 @@ namespace LME.UAKino
try try
{ {
string fetchUrl = vodUrl; string fetchUrl = vodUrl;
if (!fetchUrl.Contains("multivoice")) // Не додаємо ?multivoice — кожен VOD має свій унікальний стрім
fetchUrl += (fetchUrl.Contains("?") ? "&" : "?") + "multivoice"; // ?multivoice змішує всі голоси в один масив
_onLog?.Invoke($"UAKino resolve Ashdi: {fetchUrl}"); _onLog?.Invoke($"UAKino resolve Ashdi: {fetchUrl}");