Skip to content

Commit

Permalink
fix: authorization throws exception
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaslagoni committed Jan 29, 2023
1 parent 5a8e21f commit 6b2176d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Oxide.Ext.GamingApi/GamingApiNats.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ private GamingApiNats(LoggingInterface logger)
{
// get a private key seed from your environment.
string seed = this.GetNatsJwtSeed();
this.Logger.Info("NATS: Loading jwt seed : " + seed.Substring(seed.Length-4, seed.Length-1));
this.Logger.Info("NATS: Loading jwt seed : " + seed.Substring(0, 3));

// Generate a NkeyPair
NkeyPair kp = Nkeys.FromSeed(seed);
Expand Down

0 comments on commit 6b2176d

Please sign in to comment.