diff options
author | Brian Smith <brian@dbsoft.org> | 2023-09-29 13:09:28 -0500 |
---|---|---|
committer | Brian Smith <brian@dbsoft.org> | 2023-09-29 13:09:28 -0500 |
commit | bc4d5cec6a96e619453f02fbe743677412c009ec (patch) | |
tree | 59783de01225b2f880d35f6d7669e9c4e665c9bd | |
parent | 7d55641d43923a71df7275abb1cf564dc04eda3c (diff) | |
download | uxp-bc4d5cec6a96e619453f02fbe743677412c009ec.tar.gz |
Issue #1442 - Part 21 - Fix debug builds by removing an invalid assert.
-rw-r--r-- | dom/fetch/Fetch.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/dom/fetch/Fetch.cpp b/dom/fetch/Fetch.cpp index 5943d60963..a9d8514765 100644 --- a/dom/fetch/Fetch.cpp +++ b/dom/fetch/Fetch.cpp @@ -952,7 +952,6 @@ void FetchBody<Derived>::SetBodyUsed(JSContext* aCx, ErrorResult& aRv) { MOZ_ASSERT(aCx); - MOZ_ASSERT(mOwner->EventTargetFor(TaskCategory::Other)->IsOnCurrentThread()); if (mBodyUsed) { return; |