Commit 0c17610b authored by Jean-Baptiste Kempf's avatar Jean-Baptiste Kempf

Web: support correctly all cases of extensions

Ref #6544
(cherry picked from commit 69030f1153a62f67a21e0d0834691a4e973e8a63)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent dc22d971
...@@ -166,7 +166,7 @@ function browse(dir) { ...@@ -166,7 +166,7 @@ function browse(dir) {
var tgt = browse_target.indexOf('__') == -1 ? browse_target : browse_target.substr(0, browse_target.indexOf('__')); var tgt = browse_target.indexOf('__') == -1 ? browse_target : browse_target.substr(0, browse_target.indexOf('__'));
$('#browse_elements').empty(); $('#browse_elements').empty();
$('element', data).each(function () { $('element', data).each(function () {
var ext = $(this).attr('name').substr($(this).attr('name').lastIndexOf('.') + 1); var ext = $(this).attr('name').substr($(this).attr('name').lastIndexOf('.') + 1).toLowerCase();
if ($(this).attr('type') == 'dir' || $.inArray(ext, video_types) != -1 || $.inArray(ext, audio_types) != -1) { if ($(this).attr('type') == 'dir' || $.inArray(ext, video_types) != -1 || $.inArray(ext, audio_types) != -1) {
$('#browse_elements').append(createElementLi($(this).attr('name'), $(this).attr('type'), $(this).attr('uri'), ext)); $('#browse_elements').append(createElementLi($(this).attr('name'), $(this).attr('type'), $(this).attr('uri'), ext));
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment