From: Nolan Lawson Date: Thu, 25 May 2017 16:59:18 +0000 (-0700) Subject: Fix Firefox issue with performance marks (#3315) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=33d73387793674d955d8ec244ca099ba5a9ef97e;p=mastodon.git Fix Firefox issue with performance marks (#3315) --- diff --git a/app/javascript/mastodon/performance.js b/app/javascript/mastodon/performance.js index 64fd47bb3..4e89c2196 100644 --- a/app/javascript/mastodon/performance.js +++ b/app/javascript/mastodon/performance.js @@ -7,6 +7,11 @@ let marky; if (process.env.NODE_ENV === 'development') { + if (typeof performance !== 'undefined' && performance.setResourceTimingBufferSize) { + // Increase Firefox's performance entry limit; otherwise it's capped to 150. + // See: https://bugzilla.mozilla.org/show_bug.cgi?id=1331135 + performance.setResourceTimingBufferSize(Infinity); + } marky = require('marky'); require('react-addons-perf').start(); }