Skip to content

Commit

Permalink
Increase timeout for profiles to be considered expired
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmacdonald committed Jan 7, 2024
1 parent fa43afe commit bf2ae7a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/store/person.go
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ func (db *Store) GetExpiredProfiles(ctx context.Context, limit uint64) ([]Person
"muted").
From("person").
OrderBy("updated_on_steam ASC").
Where(sq.Lt{"updated_on_steam": time.Now().AddDate(0, 0, -7)}).
Where(sq.Lt{"updated_on_steam": time.Now().AddDate(0, 0, -30)}).
Limit(limit))
if errQuery != nil {
return nil, errQuery
Expand Down

0 comments on commit bf2ae7a

Please sign in to comment.