Skip to content

Bug in instrumentXHR(): should only splice the current xhr object #4082

@liuhailang

Description

@liuhailang

image

requestKeys.splice(requestPos);
const args = requestValues.splice(requestPos)[0];

these two line should be ====>

requestKeys.splice(requestPos, 1);
const args = requestValues.splice(requestPos, 1)[0];

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions