mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2025-04-06 19:39:35 +00:00
fixed #1169 after debugging, I found that: if `Clone` in database is empty, before https://github.com/woodpecker-ci/woodpecker/blob/master/server/api/hook.go#L128, the `repo.Clone` be always unset, so clone is failed. This PR makes the empty `Clone` can't overwrite the value in database. Co-authored-by: 想出网名啦 <a15315862177@163.com>
This commit is contained in:
parent
25280f1497
commit
6460b4c96d
1 changed files with 3 additions and 1 deletions
|
@ -76,7 +76,9 @@ func (r *Repo) Update(from *Repo) {
|
|||
r.Avatar = from.Avatar
|
||||
r.Link = from.Link
|
||||
r.SCMKind = from.SCMKind
|
||||
r.Clone = from.Clone
|
||||
if len(from.Clone) > 0 {
|
||||
r.Clone = from.Clone
|
||||
}
|
||||
r.Branch = from.Branch
|
||||
if from.IsSCMPrivate != r.IsSCMPrivate {
|
||||
if from.IsSCMPrivate {
|
||||
|
|
Loading…
Reference in a new issue