diff --git a/htdocs/js/utility.js b/htdocs/js/utility.js index 4df9d89d0..cd922f72c 100644 --- a/htdocs/js/utility.js +++ b/htdocs/js/utility.js @@ -241,6 +241,9 @@ function filetype(uri, long) { if (uri === undefined) { return ''; } + if (isStreamUri(uri) === true) { + return 'Stream'; + } const ext = uri.split('.').pop().toUpperCase(); if (long === false) { return ext;