diff --git a/bot.go b/bot.go index ddb21f8..5c819ae 100644 --- a/bot.go +++ b/bot.go @@ -70,6 +70,12 @@ func RunBot() { content := notif.Status.Content tooturl := notif.Status.URL + if check_following(followers, acct) { + fmt.Println("True") + } else { + fmt.Println("False") + } + // Follow check if check_following(followers, acct) { if notif.Status.Visibility == "public" { // Reblog toot diff --git a/cleaning.go b/cleaning.go index 604a8e4..5533dab 100644 --- a/cleaning.go +++ b/cleaning.go @@ -18,13 +18,13 @@ func DeleteNotices() { LoggerInit() for { + time.Sleep(time.Duration(Conf.Del_notices_interval) * time.Minute) + statuses, err := c.GetAccountStatuses(ctx, my_account.ID, &mastodon.Pagination{Limit: 60}) if err != nil { ErrorLogger.Println("Get account statuses") } - time.Sleep(time.Duration(Conf.Del_notices_interval) * time.Minute) - if len(statuses) > 0 { for i := range statuses { if statuses[i].Visibility == "direct" {