1
0
Fork 0
mirror of https://gitlab.com/famedly/conduit.git synced 2024-09-12 01:19:10 +02:00

Fix crash when a bad user ID is in the database

To my understanding, a bad user ID can sometimes make it into the
database, which lead to a panic prior to this change.
This commit is contained in:
LordMZTE 2022-03-31 20:59:59 +02:00
parent 08072d2c8d
commit 4a12a7cbc8
Signed by untrusted user: LordMZTE
GPG key ID: B64802DC33A64FF6

View file

@ -405,10 +405,11 @@ async fn sync_helper(
continue;
}
};
lazy_loaded.insert(
UserId::parse(state_key.as_ref())
.expect("they are in timeline_users, so they should be correct"),
);
// This check is in case a bad user ID made it into the database
if let Ok(uid) = UserId::parse(state_key.as_ref()) {
lazy_loaded.insert(uid);
}
state_events.push(pdu);
}
}