sleep after posting

This commit is contained in:
2021-09-18 20:50:14 +02:00
parent 6734917d9c
commit e5ce0bdeb7
4 changed files with 5 additions and 8 deletions
+2
View File
@@ -556,7 +556,9 @@ mod test {
assert!(RE_A_HASHTAG.is_match("#banana"));
assert!(RE_A_HASHTAG.is_match("#ласточка"));
assert!(RE_A_HASHTAG.is_match("#χαλβάς"));
assert!(RE_A_HASHTAG.is_match("#городДляЛюдей"));
assert!(RE_A_HASHTAG.is_match("foo #banana gfdfgd"));
assert!(RE_A_HASHTAG.is_match("foo #городДляЛюдей aaa"));
for (i, c) in RE_A_HASHTAG.captures_iter("foo #banana #χαλβάς #ласточка").enumerate() {
if i == 0 {
+2
View File
@@ -274,6 +274,8 @@ impl<'a> ProcessMention<'a> {
{
let _ = self.client.new_status(post)
.await.log_error("Failed to post");
// Sleep a bit to avoid throttling
tokio::time::sleep(Duration::from_secs(1)).await;
}
}
-8
View File
@@ -297,16 +297,8 @@ impl GroupHandle {
}
NotificationType::Follow => {
grp_info!(self, "New follower!");
// Just greet the user always
self.handle_new_follow(&notif_acct, notif_user_id).await;
// if self.config.is_member_or_admin(&notif_acct) {
// // Already joined, just doing something silly, ignore this
// grp_debug!(self, "User already a member, ignoring");
// } else {
//
// }
}
NotificationType::Favourite => {}
NotificationType::Reblog => {}