Skip to content

Commit

Permalink
fix: Fix A File Name Parsing Issue
Browse files Browse the repository at this point in the history
  • Loading branch information
RossWang committed Nov 18, 2017
1 parent 60c039e commit 98c07f5
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions App/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -413,6 +413,7 @@ function prepareDownload(d) {
d.fileName = decodeURIComponent(d.fileName);

// file name cannot have ""
d.fileName = d.fileName.replace('\";', '');
d.fileName = d.fileName.replace('\"', '');
d.fileName = d.fileName.replace('\"', '');

Expand Down

0 comments on commit 98c07f5

Please sign in to comment.