Skip to content

Commit 8c59a26

Browse files
authored
fix(fmt)
1 parent 8e6a0ce commit 8c59a26

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

socketioxide/src/handler/connect.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -188,9 +188,9 @@ where
188188
{
189189
type Error = H::Error;
190190
async fn call(&self, s: Arc<Socket<A>>, auth: &Option<String>) -> Result<(), Self::Error> {
191-
self.handler.call(s.clone(), auth).await?;
192-
self.next.call(s, auth).await?;
193-
Ok(())
191+
self.handler.call(s.clone(), auth).await?;
192+
self.next.call(s, auth).await?;
193+
Ok(())
194194
}
195195
}
196196

0 commit comments

Comments
 (0)