Fix matrix id import. #5063 (#5440)

This commit is contained in:
Dessalines 2025-02-20 03:29:07 -05:00 committed by GitHub
parent a65d4034d8
commit 7f0ef4d7f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -103,7 +103,7 @@ pub async fn import_settings(
let person_form = PersonUpdateForm {
display_name: data.display_name.clone().map(Some),
bio: data.bio.clone().map(Some),
matrix_user_id: data.bio.clone().map(Some),
matrix_user_id: data.matrix_id.clone().map(Some),
bot_account: data.bot_account,
..Default::default()
};