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 1ff3c2f commit 1c712adCopy full SHA for 1c712ad
crates/syn2mas/src/migration.rs
@@ -336,7 +336,11 @@ async fn migrate_threepids(
336
.into_extract_localpart(synapse_user_id.clone())
337
.map(str::to_owned)
338
else {
339
- // HACK matrix.org
+ // HACK(matrix.org): for some reason, m.org has threepids for the :vector.im
340
+ // server. We skip them, and log for potential other servers.
341
+ if !synapse_user_id.0.ends_with(":vector.im") {
342
+ tracing::warn!("Unexpected MXID for threepid: {}", synapse_user_id);
343
+ }
344
continue;
345
};
346
let Some(user_infos) = state.users.get(username.as_str()).copied() else {
0 commit comments