We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 09b3a82 + baf0c52 commit 9c6fd89Copy full SHA for 9c6fd89
src/sliding_sync.rs
@@ -217,6 +217,7 @@ pub type OnMediaFetchedFn = fn(
217
218
219
/// The set of requests for async work that can be made to the worker thread.
220
+#[allow(clippy::large_enum_variant)]
221
pub enum MatrixRequest {
222
/// Request from the login screen to log in with the given credentials.
223
Login(LoginRequest),
@@ -2544,8 +2545,7 @@ async fn spawn_sso_server(
2544
2545
}
2546
Uri::new(&sso_url).open().map_err(|err| {
2547
Error::UnknownError(
- Box::new(io::Error::new(
2548
- io::ErrorKind::Other,
+ Box::new(io::Error::other(
2549
format!("Unable to open SSO login url. Error: {:?}", err),
2550
))
2551
.into(),
0 commit comments