Skip to content

Commit

Permalink
Merge pull request #966 from gzhihongwei/static_html_submit_fix
Browse files Browse the repository at this point in the history
Fixed Static task to not explicitly check for `objData.file1`
  • Loading branch information
JackUrb committed Dec 20, 2022
2 parents 2594917 + c0c028d commit 84ea43f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ function MainApp() {
} else {
formData.append("USED_AGENT_ID", agentId);

objData.file1.size === 0
objData?.file1 === undefined
? (objData.file1 = {})
: (objData.file1 = {
lastModified: objData.file1.lastModified
Expand Down

0 comments on commit 84ea43f

Please sign in to comment.