This commit is contained in:
nora 2024-08-25 18:00:43 +02:00
parent 1c346659f6
commit 8114b5a195
9 changed files with 433 additions and 21 deletions

View file

@ -136,7 +136,7 @@ async fn main() -> eyre::Result<()> {
}
async fn main_channel(channel: PendingChannel) -> Result<()> {
let Ok(mut channel) = channel.wait_ready().await else {
let Ok(channel) = channel.wait_ready().await else {
bail!("failed to create channel");
};