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 f300eca commit 34cbc3aCopy full SHA for 34cbc3a
crates/syn2mas/src/migration.rs
@@ -456,6 +456,12 @@ async fn migrate_threepids(
456
} = threepid_res.into_synapse("reading threepid")?;
457
let created_at: DateTime<Utc> = added_at.into();
458
459
+ // HACK(matrix.org): for some reason, m.org has threepids for the :vector.im
460
+ // server. We skip just skip them.
461
+ if synapse_user_id.0.ends_with(":vector.im") {
462
+ continue;
463
+ }
464
+
465
let username = synapse_user_id
466
.extract_localpart(&state.server_name)
467
.into_extract_localpart(synapse_user_id.clone())?
0 commit comments