Compare commits

...

2 Commits

Author SHA1 Message Date
Xyon 8ab3d67542 Merge pull request 'drop locks before holding pagination timeouts' (#21) from xyon-patch-1 into main
Badgey Deployment / build (push) Successful in 6m36s Details
Badgey Deployment / deploy (BADGEY) (push) Successful in 11s Details
Badgey Deployment / deploy (M5_COMPUTER) (push) Successful in 10s Details
Reviewed-on: #21
2025-06-13 02:26:20 +00:00
Xyon 1b31ca39b4 drop locks before holding pagination timeouts 2025-06-13 02:26:01 +00:00
1 changed files with 91 additions and 88 deletions

View File

@ -78,6 +78,9 @@ async fn list_custom_responses_for_user(ctx: ManifoldContext<'_>, target: sereni
return Ok(())
}
drop(db);
drop(userinfo);
manifold::helpers::paginate(ctx, reply_handle, pages, 0).await?;
Ok(())