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 ca2ca78 + 9c6fd89 commit fbfb272Copy full SHA for fbfb272
src/sliding_sync.rs
@@ -218,6 +218,7 @@ pub type OnMediaFetchedFn = fn(
218
219
220
/// The set of requests for async work that can be made to the worker thread.
221
+#[allow(clippy::large_enum_variant)]
222
pub enum MatrixRequest {
223
/// Request from the login screen to log in with the given credentials.
224
Login(LoginRequest),
@@ -2660,8 +2661,7 @@ async fn spawn_sso_server(
2660
2661
}
2662
Uri::new(&sso_url).open().map_err(|err| {
2663
Error::UnknownError(
- Box::new(io::Error::new(
2664
- io::ErrorKind::Other,
+ Box::new(io::Error::other(
2665
format!("Unable to open SSO login url. Error: {:?}", err),
2666
))
2667
.into(),
0 commit comments