You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using the leaderboard feature for Nakama (2.4), I'm having an issue using a colon : in a leaderboard_id. Right now I'm getting a 500 error using the rest api to fetch the data. Example: GET /v2/leaderboard/some:leaderboard. I am able to create the leaderboard and add leaderboard records, but not fetch anything.
Steps to Reproduce
Create a leaderboard with Lua pcall(nk.leaderboard_create, "test:leaderboard", false, "desc", "incr", cron, metadata)
Create a leaderboard record with Lua: pcall(nk.leaderboard_record_write, "test:leaderboard", ownerId, userId, pointValue)
grpc-ecosystem/grpc-gateway#224 appears to be resolved. This issue should be fixed through the dependency update in c97ad15, and will be part of the next release.
Description
Using the leaderboard feature for Nakama (2.4), I'm having an issue using a colon
:
in a leaderboard_id. Right now I'm getting a 500 error using the rest api to fetch the data. Example:GET /v2/leaderboard/some:leaderboard
. I am able to create the leaderboard and add leaderboard records, but not fetch anything.Steps to Reproduce
pcall(nk.leaderboard_create, "test:leaderboard", false, "desc", "incr", cron, metadata)
pcall(nk.leaderboard_record_write, "test:leaderboard", ownerId, userId, pointValue)
Expected Result
Returns the leaderboard records.
Actual Result
Returns a 404 Not Found (no logs).
Context
Your Environment
The text was updated successfully, but these errors were encountered: