Bug 1594979 - Logpoints fail to log with `frame is null`. r=bhackett

Differential Revision: https://phabricator.services.mozilla.com/D52310

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Jason Laster 2019-11-08 16:49:11 +00:00
Родитель 653502640f
Коммит 58def33d5e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -244,7 +244,7 @@ function transformConsoleAPICallPacket(packet) {
}
: null;
if (type === "logPointError" || type === "logPoint") {
if (frame && (type === "logPointError" || type === "logPoint")) {
frame.options = { logPoint: true };
}