fix: rate limiting

fix: wait longer for invoice
This commit is contained in:
trisua 2025-05-07 21:54:21 -04:00
parent 797231946a
commit aca1a8236c
4 changed files with 21 additions and 5 deletions

View file

@ -157,6 +157,14 @@ macro_rules! check_user_blocked_or_private {
.await
.is_ok(),
);
context.insert(
"is_following",
&$data
.0
.get_userfollow_by_initiator_receiver(ua.id, $other_user.id)
.await
.is_ok(),
);
return Ok(Html(
$data.1.render("profile/private.html", &context).unwrap(),