Skip to content

Commit

Permalink
fix(browser): Call removeEventListener twice only when necessary (#3016)
Browse files Browse the repository at this point in the history
We were handling an edge case (of an event handler being attached in both its wrapped and pre-wrapped states) as if it were happening in all cases. This checks for the edge case first, and only handles it when necessary.
  • Loading branch information
kamilogorek committed Oct 30, 2020
1 parent 75d3225 commit 8489072
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions packages/browser/src/integrations/trycatch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ export class TryCatch implements Integration {
});

fill(proto, 'removeEventListener', function(
original: () => void,
originalRemoveEventListener: () => void,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
): (this: any, eventName: string, fn: EventListenerObject, options?: boolean | EventListenerOptions) => () => void {
return function(
Expand All @@ -230,12 +230,16 @@ export class TryCatch implements Integration {
* then we have to detach both of them. Otherwise, if we'd detach only wrapped one, it'd be impossible
* to get rid of the initial handler and it'd stick there forever.
*/
const wrappedEventHandler = (fn as unknown) as WrappedFunction;
try {
original.call(this, eventName, ((fn as unknown) as WrappedFunction).__sentry_wrapped__, options);
const originalEventHandler = wrappedEventHandler?.__sentry_wrapped__;
if (originalEventHandler) {
originalRemoveEventListener.call(this, eventName, originalEventHandler, options);
}
} catch (e) {
// ignore, accessing __sentry_wrapped__ will throw in some Selenium environments
}
return original.call(this, eventName, fn, options);
return originalRemoveEventListener.call(this, eventName, wrappedEventHandler, options);
};
});
}
Expand Down

0 comments on commit 8489072

Please sign in to comment.