mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
Correction for #723
Correction for #723 Bug was : decode failed if the password contains ```:```
This commit is contained in:
parent
6f71632e3e
commit
b7ebbb4064
1 changed files with 4 additions and 4 deletions
|
@ -48,11 +48,11 @@ func BasicAuthDecode(encoded string) (user string, name string, err error) {
|
|||
return user, name, err
|
||||
}
|
||||
|
||||
a := strings.Split(string(s), ":")
|
||||
if len(a) == 2 {
|
||||
user, name = a[0], a[1]
|
||||
} else {
|
||||
a := strings.SplitN(string(s), ":", 2)
|
||||
if len(a) != 2 {
|
||||
err = errors.New("decode failed")
|
||||
} else {
|
||||
user, name = a[0], a[1]
|
||||
}
|
||||
return user, name, err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue