Skip to content

Commit

Permalink
Fixed an issue where log file parsing failed JPCERTCC#66
Browse files Browse the repository at this point in the history
  • Loading branch information
shu-tom committed Nov 20, 2019
1 parent 0e03856 commit a0db13e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static/js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -1550,7 +1550,7 @@ function parseEVTX() {
if (xmlhttp2.readyState == 4) {
if (xmlhttp2.status == 200) {
var logdata = xmlhttp2.responseText.split(/\r\n|\r|\n/);
var allrecode = logdata[3].split(" ")[5].replace(".", "");
var allrecode = logdata[4].split(" ")[5].replace(".", "");
var nowdata = logdata[logdata.length - 2];
if (nowdata.indexOf("Now loading") != -1) {
var recordnum = nowdata.split(" ")[3];
Expand Down

0 comments on commit a0db13e

Please sign in to comment.