Skip to content

Commit

Permalink
Slightly increase number to match what is displayed on patreon
Browse files Browse the repository at this point in the history
  • Loading branch information
duncte123 committed Aug 14, 2024
1 parent f8dffba commit bfd4665
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions timer.go
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ func UpdatePatrons() {
for i, patron := range patrons.Data {
attr := patron.Attributes

// is an active patron that pays $1 or more
if attr.PatronStatus == "active_patron" && attr.WillPayAmountCents >= 100 {
// is an active patron that pays $3 or more
if attr.PatronStatus == "active_patron" && attr.WillPayAmountCents >= 300 {
userId := patron.Relationships.User.Data.Id
imageUrl := patrons.Included[i].Attributes.ImageUrl

Expand Down

0 comments on commit bfd4665

Please sign in to comment.