We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ac10558 commit 6fa5ea8Copy full SHA for 6fa5ea8
pkg/webircgateway/client.go
@@ -758,11 +758,11 @@ func (c *Client) ProcesIncomingLine(line string) (string, error) {
758
return "", nil
759
}
760
761
- if strings.ToUpper(message.Command) == "BUFFERTOKEN" {
+ if strings.ToUpper(message.Command) == "EXTJWT" {
762
tokenFor := message.GetParam(0, "")
763
764
tokenM := irc.Message{}
765
- tokenM.Command = "BUFFERTOKEN"
+ tokenM.Command = "EXTJWT"
766
tokenData := jwt.MapClaims{
767
"exp": time.Now().UTC().Add(1 * time.Minute).Unix(),
768
"iss": c.UpstreamConfig.Hostname,
0 commit comments