fix(go): update to resolve linter errors (#3913)

This commit is contained in:
Gabe Kangas
2024-09-05 13:41:10 -07:00
committed by GitHub
parent 208fafaaab
commit 90b70612c9
5 changed files with 14 additions and 21 deletions
+2 -2
View File
@@ -45,8 +45,8 @@ func GetFederationFollowers(limit int, offset int) ([]models.Follower, int, erro
}
followersResult, err := _datastore.GetQueries().GetFederationFollowersWithOffset(ctx, db.GetFederationFollowersWithOffsetParams{
Limit: int32(limit),
Offset: int32(offset),
Limit: limit,
Offset: offset,
})
if err != nil {
return nil, 0, err