Skip to content

Commit 250b44b

Browse files
committed
Merge pull request #460 from getsentry/GH-458
Fix missing return value in requestAnimationFrame wrapper (fixes #458)
2 parents 94fde0c + 418b29c commit 250b44b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/raven.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ Raven.prototype = {
620620
if (window.requestAnimationFrame) {
621621
fill(window, 'requestAnimationFrame', function (orig) {
622622
return function (cb) {
623-
orig(self.wrap(cb));
623+
return orig(self.wrap(cb));
624624
};
625625
});
626626
}

0 commit comments

Comments
 (0)