DevTools: Add missing param to fetchFromPage() (#22291)

This commit is contained in:
Brian Vaughn
2021-09-10 16:26:46 -04:00
committed by GitHub
parent 81db4eb1d1
commit d2f08dd40d

View File

@@ -258,7 +258,7 @@ function createPanelIfReactLoaded() {
}
// Edge case where getContent() returned null; fall back to fetch.
fetchFromPage(url, resolve);
fetchFromPage(url, resolve, reject);
}
});
@@ -273,7 +273,7 @@ function createPanelIfReactLoaded() {
}
// No matching URL found; fall back to fetch.
fetchFromPage(url, resolve);
fetchFromPage(url, resolve, reject);
});
};