Skip to content

Commit

Permalink
Update for Nakama 3.26.0. (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
zyro authored Feb 4, 2025
1 parent 23695db commit ff4c5ce
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/heroiclabs/hiro

go 1.23.3
go 1.23.5

require (
github.com/heroiclabs/nakama-common v1.35.0
google.golang.org/protobuf v1.35.2
github.com/heroiclabs/nakama-common v1.36.0
google.golang.org/protobuf v1.36.4
)
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
github.com/google/go-cmp v0.5.5 h1:Khx7svrCpmxxtHBq5j2mp/xVjsi8hQMfNLvJFAlrGgU=
github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
github.com/heroiclabs/nakama-common v1.35.0 h1:gO3J2v2E12sZ2uL258lt5YF6yNO1tiPtvL7ZwV8t/n0=
github.com/heroiclabs/nakama-common v1.35.0/go.mod h1:E4kw2QpsINoXXJS7aOjen1dycPkoo9bD9pYPAjmA8rc=
github.com/heroiclabs/nakama-common v1.36.0 h1:wg2sLnoJdh9r49Hhi0j0PIoCiVJfwAkwo8xjuHi75j8=
github.com/heroiclabs/nakama-common v1.36.0/go.mod h1:35jpsZHB/fxxD2YcfG35ZE6HhJlla8vBkHCkuJERXbs=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 h1:E7g+9GITq07hpfrRu66IVDexMakfv52eLZ2CXBWiKr4=
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
google.golang.org/protobuf v1.35.2 h1:8Ar7bF+apOIoThw1EdZl0p1oWvMqTHmpA2fRTyZO8io=
google.golang.org/protobuf v1.35.2/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
google.golang.org/protobuf v1.36.4 h1:6A3ZDJHn/eNqc1i+IdefRzy/9PokBTPvcqMySR7NNIM=
google.golang.org/protobuf v1.36.4/go.mod h1:9fA7Ob0pmnwhb644+1+CVWFRbNajQ6iRojtC/QF5bRE=
2 changes: 1 addition & 1 deletion personalizer_satori.go
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ func (p *SatoriPersonalizer) Authenticate(ctx context.Context, logger runtime.Lo
if !p.IsPublishAuthenticateRequest() {
return
}
if err := nk.GetSatori().Authenticate(ctx, userID, nil, nil); err != nil && !errors.Is(err, runtime.ErrSatoriConfigurationInvalid) {
if _, err := nk.GetSatori().Authenticate(ctx, userID, nil, nil, true); err != nil && !errors.Is(err, runtime.ErrSatoriConfigurationInvalid) {
logger.WithField("error", err.Error()).Error("failed to authenticate with Satori")
}
}
Expand Down

0 comments on commit ff4c5ce

Please sign in to comment.