Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[@sentry-internal/browser-utils]: Cannot read properties of null (reading 'apply') #15552

Closed
3 tasks done
TheDevMinerTV opened this issue Mar 3, 2025 · 5 comments · Fixed by #15632
Closed
3 tasks done
Assignees
Labels
Package: angular Issues related to the Sentry Angular SDK

Comments

@TheDevMinerTV
Copy link

TheDevMinerTV commented Mar 3, 2025

Is there an existing issue for this?

How do you use Sentry?

Sentry Saas (sentry.io)

Which SDK are you using?

@sentry/angular

SDK Version

9.2.0

Framework Version

19.1.7

Link to Sentry event

https://legartis.sentry.io/issues/31731207

Reproduction Example/SDK Setup

Sentry.init({
  dsn,
  tracePropagationTargets: [ /* OUR SERVICES */ ],
  integrations: [
    Sentry.browserTracingIntegration(),
    Sentry.replayIntegration(),
  ],
  tracesSampleRate: sentryConfig.tracesRate,
  environment: sentryConfig.environment,
  release: sentryConfig.release,
  debug: sentryConfig.debug,
});

Steps to Reproduce

Not sure, a customer triggered the internal Sentry error

Expected Result

This shouldn't happen

Actual Result

Cannot read properties of null (reading 'apply')

node_modules/@sentry-internal/browser-utils/build/esm/instrument/history.js in History.replaceState:58

...
          from,
          to
        };
        triggerHandlers('history', handlerData);
      }
      return originalHistoryFunction.apply(this, args);
      //     ^^^^^^^^^^^^^^^^^^^^^^^
    };
  }
  fill(WINDOW.history, 'pushState', historyReplacementFunction);
  fill(WINDOW.history, 'replaceState', historyReplacementFunction);
}
...
@getsantry getsantry bot moved this to Waiting for: Product Owner in GitHub Issues with 👀 3 Mar 3, 2025
@github-actions github-actions bot added the Package: angular Issues related to the Sentry Angular SDK label Mar 3, 2025
@TheDevMinerTV
Copy link
Author

TheDevMinerTV commented Mar 3, 2025

Not sure, but this might be caused by whatever Microsoft Office Word is doing on the different platforms.
Office on Windows seems to identify itself as Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36 Edg/133.0.0.0
While Office on macOS seems to be Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko).

Maybe those JS engines are just garbage and don't support pushState and replaceState.

@andreiborza
Copy link
Member

Hi @TheDevMinerTV, thanks for writing in.

Any chance you can check typeof window.history.pushState and typeof window.history.replaceState?

@TheDevMinerTV
Copy link
Author

MS Office 365: both are functions

I guess it solved itself? I assume some older Office installs are still based on the old Edge engine which doesn't have this.

@getsantry getsantry bot moved this from Waiting for: Community to Waiting for: Product Owner in GitHub Issues with 👀 3 Mar 11, 2025
@Lms24 Lms24 self-assigned this Mar 11, 2025
@Lms24
Copy link
Member

Lms24 commented Mar 11, 2025

I opened #15632 - turns out one of our instrumentation/patching helper functions didn't account for the edge case that the thing to path is not a function (as in this case, undefined or null). While this ocurance in particular is an edge case, I think fixing this class of potential SDK errors is an overall win. Thanks for reporting!

Copy link
Contributor

A PR closing this issue has just been released 🚀

This issue was referenced by PR #15632, which was included in the 9.6.0 release.

# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
Package: angular Issues related to the Sentry Angular SDK
Projects
Archived in project
Development

Successfully merging a pull request may close this issue.

4 participants