Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/undo-ransomware/ransomware_detection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorMatthias Held <ilovemilk@wusa.io>2018-08-28 14:59:41 +0300
committerMatthias Held <ilovemilk@wusa.io>2018-08-28 14:59:41 +0300
commitf410ca7af805007a6bcda6ced5adce79521b5ea1 (patch)
tree8d2108a37b5b190aa2039b9d4db94068a0b51792 /js
parent758c5dfbe2e4ac54d457406f4624fb9c89142db5 (diff)
Fix truncation of long filenames
Diffstat (limited to 'js')
-rw-r--r--js/filelist.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/filelist.js b/js/filelist.js
index 101a9b6..13a2e06 100644
--- a/js/filelist.js
+++ b/js/filelist.js
@@ -347,6 +347,7 @@
// file name
filename = fileData.originalName;
if (fileData.command === 2) {
+ // file was renamed use new name
filename = fileData.newName
}