Skip to content

Commit

Permalink
Change clan activity limit to 10
Browse files Browse the repository at this point in the history
  • Loading branch information
Swan committed Oct 13, 2024
1 parent 66fed8b commit 2420bfb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handlers/clan_activity.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ func GetClanActivity(c *gin.Context) *APIError {
page = 0
}

activities, err := db.GetClanActivity(clanId, 50, page)
activities, err := db.GetClanActivity(clanId, 10, page)

if err != nil {
return APIErrorServerError("Error getting clan activities", err)
Expand Down

0 comments on commit 2420bfb

Please sign in to comment.