Skip to content

Commit

Permalink
Merge pull request #666 from vidartf/fix-exit-code
Browse files Browse the repository at this point in the history
Correctly send exit code 0
  • Loading branch information
vidartf authored Apr 30, 2023
2 parents e7a828d + 53e1a9f commit b1804b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/webapp/src/app/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ function sendBeacon(url: string, data: PartialJSONObject): void {
}

for (let key of Object.keys(data)) {
if (data[key]) {
if (data[key] !== null && data[key] !== undefined) {
formData.append(key, data[key]!.toString() );
}
}
Expand Down

0 comments on commit b1804b1

Please sign in to comment.