Skip to content
Snippets Groups Projects
Commit 220f50d3 authored by Koen J's avatar Koen J
Browse files

Fixed quality selection when clicking download with HLS selected by default.

parent e0bf9d2a
No related branches found
No related tags found
Loading
......@@ -612,6 +612,18 @@ class UISlideOverlays {
}
menu.onOK.subscribe {
val sv = selectedVideo
if (sv is IHLSManifestSource) {
showHlsPicker(video, sv, sv.url, container)
return@subscribe
}
val sa = selectedAudio
if (sa is IHLSManifestAudioSource) {
showHlsPicker(video, sa, sa.url, container)
return@subscribe
}
menu.hide();
val subtitleToDownload = selectedSubtitle;
if(selectedAudio != null || !requiresAudio) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment