This commit is contained in:
fade 2022-09-09 01:44:09 -04:00
parent 30a93f2466
commit ead673bf2d
2 changed files with 8 additions and 2 deletions

6
bot.go
View File

@ -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

View File

@ -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" {