Commit 57f3869f authored by Andrei Mihu's avatar Andrei Mihu
Browse files

More exact usage of limit parameter in leaderboard record listings.

parent 6b02d963
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -8,9 +8,11 @@ The format is based on [keep a changelog](http://keepachangelog.com) and this pr
- More consistent signature and handling between JavaScript runtime Base64 encode functions.
- Improve group list cursor handling for messages with close timestamps.
- Improve handling of database connections going through proxies.
- Improve extraction of purchases and subscriptions from Apple receipts.

### Fixed
- Graceful handling of storage list errors in JavaScript runtime.
- More exact usage of limit parameter in leaderboard record listings.

## [3.13.1] - 2022-08-18
### Fixed
+1 −0
Original line number Diff line number Diff line
@@ -194,6 +194,7 @@ func LeaderboardRecordsList(ctx context.Context, logger *zap.Logger, db *sql.DB,
					OwnerId:       dbOwnerID,
					Rank:          rank,
				}
				break
			}

			err = rows.Scan(&dbOwnerID, &dbUsername, &dbScore, &dbSubscore, &dbNumScore, &dbMaxNumScore, &dbMetadata, &dbCreateTime, &dbUpdateTime)