heroiclabs / nakama-dart

Pure Dart Client for Nakama Server
https://heroiclabs.com/docs/nakama/client-libraries/dart
157 stars 48 forks source link

client.sessionLogout(session: session) fails on Windows #108

Open korkis opened 1 month ago

korkis commented 1 month ago
final session = await _client.authenticateEmail(
  email: email,      
  username: username,
  password: password,
  create: false,
);
await _client.sessionLogout(session: session!); // <- Error Here

gRPC Error (code: 16, codeName: UNAUTHENTICATED, message: Auth token invalid, details: [], rawResponse: null, trailers: {})

There is no error on the web.