bit more progress
This commit is contained in:
@ -211,3 +211,13 @@ func (p *processor) notifyAnnounce(status *gtsmodel.Status) error {
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func (p *processor) timelineStatus(status *gtsmodel.Status) error {
|
||||
followers := &[]gtsmodel.Follow{}
|
||||
if err := p.db.GetFollowersByAccountID(status.AccountID, followers); err != nil {
|
||||
|
||||
}
|
||||
|
||||
// filter out so we only have the local ones
|
||||
localFollowers := &[]gtsmodel.Account{}
|
||||
}
|
||||
Reference in New Issue
Block a user