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 86396a3 commit 1b34ae1Copy full SHA for 1b34ae1
crates/syn2mas/src/migration.rs
@@ -328,7 +328,11 @@ async fn migrate_threepids(
328
.into_extract_localpart(synapse_user_id.clone())
329
.map(str::to_owned)
330
else {
331
- // HACK matrix.org
+ // HACK(matrix.org): for some reason, m.org has threepids for the :vector.im
332
+ // server. We skip them, and log for potential other servers.
333
+ if !synapse_user_id.0.ends_with(":vector.im") {
334
+ tracing::warn!("Unexpected MXID for threepid: {}", synapse_user_id);
335
+ }
336
continue;
337
};
338
let Some(user_infos) = state.users.get(username.as_str()).copied() else {
0 commit comments