fix: replace lysand user key with dummy

This commit is contained in:
aprilthepink 2024-07-17 00:09:31 +02:00
parent d86abbb97d
commit b5b4144f39

View file

@ -129,7 +129,7 @@ pub async fn lysand_user_from_db(
created_at: OffsetDateTime::from_unix_timestamp(user.created_at.timestamp()).unwrap(), created_at: OffsetDateTime::from_unix_timestamp(user.created_at.timestamp()).unwrap(),
public_key: PublicKey { public_key: PublicKey {
actor: url.clone(), actor: url.clone(),
public_key: user.public_key, public_key: "AAAAC3NzaC1lZDI1NTE5AAAAIMxsX+lEWkHZt9NOvn9yYFP0Z++186LY4b97C4mwj/f2".to_string(), // dummy key
}, },
}; };
Ok(user) Ok(user)