Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ref(replay): Fix accidental renaming
  • Loading branch information
mydea committed Dec 9, 2022
commit edd132a3ae9ec6b24efd5d0335b9030561580f1f
4 changes: 2 additions & 2 deletions packages/replay/src/replay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ export class ReplayContainer {
return;
}

this._performanceObserver = new PerformanceObserver(this.handle_performanceObserver);
this._performanceObserver = new PerformanceObserver(this.handlePerformanceObserver);

// Observe almost everything for now (no mark/measure)
[
Expand Down Expand Up @@ -573,7 +573,7 @@ export class ReplayContainer {
/**
* Keep a list of performance entries that will be sent with a replay
*/
handle_performanceObserver: (list: PerformanceObserverEntryList) => void = (list: PerformanceObserverEntryList) => {
handlePerformanceObserver: (list: PerformanceObserverEntryList) => void = (list: PerformanceObserverEntryList) => {
// For whatever reason the observer was returning duplicate navigation
// entries (the other entry types were not duplicated).
const newPerformanceEntries = dedupePerformanceEntries(
Expand Down