diff --git a/js/downloadManager/index.js b/js/downloadManager/index.js index bf7ac47e..058e4e83 100644 --- a/js/downloadManager/index.js +++ b/js/downloadManager/index.js @@ -108,7 +108,8 @@ function createDOM(arg) { let h2FileName = document.createElement('h2'); h2FileName.classList.add('text-cutoff'); - h2FileName.innerHTML = arg.fileName; + h2FileName.innerHTML = arg.fileDisplayName; + h2FileName.title = arg.fileDisplayName; fileNameDiv.appendChild(h2FileName); let fileProgressTitle = document.createElement('span');