mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-11-01 03:22:24 -05:00
bit more progress
This commit is contained in:
parent
c23075cac2
commit
5acca2a735
11 changed files with 99 additions and 98 deletions
|
|
@ -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{}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue