remove extract expect

Signed-off-by: microwavedcola1 <microwavedcola@gmail.com>
This commit is contained in:
microwavedcola1 2022-04-14 11:18:11 +02:00
parent 05703857ba
commit 5d03b85b62
1 changed files with 1 additions and 3 deletions

View File

@ -149,9 +149,7 @@ pub async fn update_index_runner(mango_client: &MangoClient) -> anyhow::Result<(
loop {
interval.tick().await;
update_index(mango_client)
.await
.expect("Something went wrong here...");
update_index(mango_client).await?;
}
}