Skip to content

Commit

Permalink
Merge pull request #7 from yoadimpen/hotfix#6
Browse files Browse the repository at this point in the history
hotfix: issue #6 directory path split fixed
  • Loading branch information
yoadimpen authored Jun 13, 2021
2 parents 3000d8d + 66c3cb1 commit 3280f6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/generationFunctions.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ function getPathsFromHTTPRequest(response){
var firstSplit = response.split("201: ");

for(i=1;i<firstSplit.length;i++){
var secondSplit = firstSplit[i].split(" 4096");
var secondSplit = firstSplit[i].split(" ");
res[i-1] = secondSplit[0];
}

Expand Down

0 comments on commit 3280f6b

Please sign in to comment.