remove unwrap from admin room build_and_append_pdu
Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
@@ -112,7 +112,10 @@ impl Service {
|
||||
pub fn start_handler(self: &Arc<Self>) {
|
||||
let self2 = Arc::clone(self);
|
||||
tokio::spawn(async move {
|
||||
self2.handler().await.unwrap();
|
||||
self2
|
||||
.handler()
|
||||
.await
|
||||
.expect("Failed to initialize request sending handler");
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user