fixed stupid issue
All checks were successful
/ build-all-services (push) Successful in 9m20s

This commit is contained in:
husky 2025-03-27 19:21:22 -07:00
parent 667c9193e8
commit edad566156

View file

@ -21,7 +21,7 @@ pub async fn user_all_active_derank_entries(db: &DatabaseConnection, user_id: St
if list.active { if list.active {
// should always be true but just being safe // should always be true but just being safe
derank_entries.extend(derank_list_entry::Entity::find() derank_entries.extend(derank_list_entry::Entity::find()
.filter(derank_list_entry::Column::DerankListId.eq(&list.id)) .filter(derank_list_entry::Column::DerankListId.eq(&list.derank_list_id))
.all(db).await.map_err(|e| { .all(db).await.map_err(|e| {
error!("DATABASE ERROR WHILE USERALLDERANKENTRIES (get entries): {e}"); error!("DATABASE ERROR WHILE USERALLDERANKENTRIES (get entries): {e}");
})?.into_iter().map(|v| { })?.into_iter().map(|v| {