fix(uaflix): simplify subtitle presence check in episode logging

This commit is contained in:
Felix 2026-05-29 16:30:50 +03:00
parent dd40ed69f2
commit 35bb155fa3

View File

@ -1966,7 +1966,7 @@ namespace LME.Uaflix
stream.title = label;
_onLog($"ParseEpisode: zetvideo потік #{streamIndex + 1}: {label} -> {zetIframe}" +
(stream.subtitles != null && stream.subtitles.Value.data != null && stream.subtitles.Value.data.Count > 0
(stream.subtitles?.data?.Count > 0
? " (має субтитри)" : ""));
}