fix(calc): Possible return without indicating Finished

This commit is contained in:
Michael Aaron Murphy 2021-08-25 13:42:52 +02:00
parent af72ec3f0f
commit 1468f74a5e

View file

@ -89,9 +89,9 @@ impl App {
}),
)
.await;
crate::send(&mut self.out, PluginResponse::Finished).await;
}
crate::send(&mut self.out, PluginResponse::Finished).await;
}
}