downstream: rename downstreamRegistration.password to pass

This is more descriptive.
This commit is contained in:
Simon Ser 2023-04-05 20:30:34 +02:00
parent f6043e5b98
commit 92796248d2
1 changed files with 4 additions and 4 deletions

View File

@ -303,7 +303,7 @@ type downstreamSASL struct {
type downstreamRegistration struct {
nick string
username string
password string // from PASS
pass string
networkName string
networkID int64
@ -640,7 +640,7 @@ func (dc *downstreamConn) handleMessageUnregistered(ctx context.Context, msg *ir
return err
}
case "PASS":
if err := parseMessageParams(msg, &dc.registration.password); err != nil {
if err := parseMessageParams(msg, &dc.registration.pass); err != nil {
return err
}
case "CAP":
@ -1266,8 +1266,8 @@ func (dc *downstreamConn) register(ctx context.Context) error {
})
}
password := dc.registration.password
dc.registration.password = ""
password := dc.registration.pass
dc.registration.pass = ""
if dc.registration.authUsername == "" {
if password == "" {
if dc.caps.IsEnabled("sasl") {