diff options
Diffstat (limited to 'components/script/fetch.rs')
-rw-r--r-- | components/script/fetch.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/fetch.rs b/components/script/fetch.rs index 125379eee05..bda60fd9ad3 100644 --- a/components/script/fetch.rs +++ b/components/script/fetch.rs @@ -272,7 +272,7 @@ impl FetchResponseListener for FetchContext { fn process_response_chunk(&mut self, _: RequestId, chunk: Vec<u8>) { let response = self.response_object.root(); - response.stream_chunk(chunk); + response.stream_chunk(chunk, CanGc::note()); } fn process_response_eof( |