Bug 1197966 - Fix typo when releasing content-side probes in PerformanceStats-content.js. r=felipe

This commit is contained in:
David Rajchenbach-Teller 2015-08-25 17:18:09 +02:00
Родитель e1d9e156b5
Коммит 33282a3867
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -79,8 +79,9 @@ Services.cpmm.addMessageListener("performance-stats-service-release", function(m
if (!isContent) {
return;
}
// Keep only the probes that do not appear in the payload
let probes = gMonitor.getProbeNames
let probes = gMonitor.probeNames
.filter(x => msg.data.payload.indexOf(x) == -1);
gMonitor = PerformanceStats.getMonitor(probes);
});