Skip to content

Commit

Permalink
Fix async identification
Browse files Browse the repository at this point in the history
  • Loading branch information
bripkens committed May 3, 2019
1 parent 6e02baa commit ae59694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/hooks/XMLHttpRequest.js
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export function instrumentXMLHttpRequest() {
'l': win.location.href,
'm': method,
'u': normalizeUrl(url),
'a': async ? 1 : 0,
'a': async === undefined || async ? 1 : 0,
'st': 0,
'e': undefined,
'bc': state.setBackendCorrelationHeaders ? 1 : 0
Expand Down

0 comments on commit ae59694

Please sign in to comment.