mirror of
https://github.com/transmission/transmission
synced 2025-02-20 21:26:53 +00:00
(trunk web) allow file names to break on \ _ or .
This commit is contained in:
parent
7901f908af
commit
8cafb677da
1 changed files with 1 additions and 1 deletions
|
@ -667,7 +667,7 @@ TorrentFile.prototype = {
|
|||
|
||||
var file_div = document.createElement('div');
|
||||
file_div.className = "inspector_torrent_file_list_entry_name";
|
||||
file_div.textContent = this.name;
|
||||
file_div.innerHTML = this.name.replace(/([\/_\.])/g, "$1​");
|
||||
|
||||
var prog_div = document.createElement('div');
|
||||
prog_div.className = "inspector_torrent_file_list_entry_progress";
|
||||
|
|
Loading…
Reference in a new issue