mirror of
https://github.com/nextcloud/server.git
synced 2026-03-03 05:51:07 -05:00
Manage More special chars in file listings. ';' is still problematic
This commit is contained in:
parent
8de7c36b4c
commit
2fa9e3279c
1 changed files with 1 additions and 1 deletions
|
|
@ -1,7 +1,7 @@
|
|||
$(document).ready(function() {
|
||||
$('#fileList tr').each(function(){
|
||||
//little hack to set unescape filenames in attribute
|
||||
$(this).attr('data-file',decodeURI($(this).attr('data-file')));
|
||||
$(this).attr('data-file',decodeURIComponent($(this).attr('data-file')));
|
||||
});
|
||||
|
||||
if($('tr[data-file]').length==0){
|
||||
|
|
|
|||
Loading…
Reference in a new issue