Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 501cebd0 authored by Chris Wailes's avatar Chris Wailes Committed by Automerger Merge Worker
Browse files

Update code for Rust 1.83.0 am: 430272da am: 4b9d0099

parents 618d23e1 4b9d0099
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -224,12 +224,11 @@ impl DohFrontend {
            self.command_tx.is_some(),
            "command_tx is None because worker thread not yet initialized"
        );
        return self
            .command_tx
        self.command_tx
            .as_ref()
            .unwrap()
            .send(ControlCommand::StatsClearQueries)
            .or_else(|e| bail!(e));
            .or_else(|e| bail!(e))
    }

    fn init_worker_thread_params(&mut self) -> Result<WorkerParams> {