chore (backend-rs): add TODO comment

This commit is contained in:
naskya 2024-05-17 18:12:27 +09:00
parent 7e8d71003f
commit 2fdd165144
No known key found for this signature in database
GPG key ID: 712D413B3A9FED5C

View file

@ -46,6 +46,7 @@ pub async fn update_antennas_on_new_note(
note_author: &Acct,
note_muted_users: Vec<String>,
) -> Result<(), Error> {
// TODO: do this in parallel
for antenna in antennas().await?.iter() {
if note_muted_users.contains(&antenna.user_id) {
continue;