fix error message for purging auth requests

This commit is contained in:
stefan0xC 2026-02-01 07:52:11 +01:00
parent cc80f689ed
commit 7a3bf15395
No known key found for this signature in database
GPG Key ID: 817020C608FE9C09

View File

@ -1704,6 +1704,6 @@ pub async fn purge_auth_requests(pool: DbPool) {
if let Ok(conn) = pool.get().await {
AuthRequest::purge_expired_auth_requests(&conn).await;
} else {
error!("Failed to get DB connection while purging trashed ciphers")
error!("Failed to get DB connection while purging auth requests")
}
}