mirror of
https://github.com/go-gitea/gitea
synced 2024-11-01 01:03:39 +01:00
Use strings.Cut
for GIT_PROTOCOL value (#20638)
- As per https://github.com/go-gitea/gitea/pull/20616#discussion_r935612542
This commit is contained in:
parent
90b2657ae7
commit
87a7c37ecb
@ -78,8 +78,7 @@ func sessionHandler(session ssh.Session) {
|
||||
gitProtocol := ""
|
||||
for _, env := range session.Environ() {
|
||||
if strings.HasPrefix(env, "GIT_PROTOCOL=") {
|
||||
// The value would be version=2, so using normal split doesn't work here.
|
||||
gitProtocol = strings.SplitN(env, "=", 2)[1]
|
||||
_, gitProtocol, _ = strings.Cut(env, "=")
|
||||
break
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user