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.
1 parent 5a1ac37 commit c10e6ddCopy full SHA for c10e6dd
crates/syn2mas/src/migration.rs
@@ -472,6 +472,12 @@ async fn migrate_threepids(
472
} = threepid_res.into_synapse("reading threepid")?;
473
let created_at: DateTime<Utc> = added_at.into();
474
475
+ // HACK(matrix.org): for some reason, m.org has threepids for the :vector.im
476
+ // server. We skip just skip them.
477
+ if synapse_user_id.0.ends_with(":vector.im") {
478
+ continue;
479
+ }
480
+
481
let username = synapse_user_id
482
.extract_localpart(&state.server_name)
483
.into_extract_localpart(synapse_user_id.clone())?
0 commit comments