bit of tidying up!

This commit is contained in:
tsmethurst
2021-06-16 12:10:00 +02:00
parent 740086576c
commit a42e05eee0
8 changed files with 134 additions and 122 deletions

View File

@ -17,7 +17,7 @@ func (f *filter) StatusVisible(targetStatus *gtsmodel.Status, requestingAccount
"requestingAccountID": requestingAccount.ID,
})
relevantAccounts, err := f.db.PullRelevantAccountsFromStatus(targetStatus)
relevantAccounts, err := f.pullRelevantAccountsFromStatus(targetStatus)
if err != nil {
l.Debugf("error pulling relevant accounts for status %s: %s", targetStatus.ID, err)
}
@ -195,7 +195,3 @@ func (f *filter) StatusVisible(targetStatus *gtsmodel.Status, requestingAccount
return false, errors.New("reached the end of StatusVisible with no result")
}
func StatusVisibleInHomeTimeline() {
}