diff options
-rw-r--r-- | components/script/script_thread.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_thread.rs b/components/script/script_thread.rs index c50011bf19c..fa83eaed631 100644 --- a/components/script/script_thread.rs +++ b/components/script/script_thread.rs @@ -1511,7 +1511,7 @@ impl ScriptThread { let (response_chan, response_port) = channel(); chan.send(message::Msg::PrepareToExit(response_chan)).ok(); debug!("shutting down layout for page {}", id); - response_port.recv().unwrap(); + let _ = response_port.recv(); chan.send(message::Msg::ExitNow).ok(); self.constellation_chan.send(ConstellationMsg::PipelineExited(id)).ok(); |