On Repo update, keep old "Clone" if update would empty it (#1170) (#1195)

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:
6543 2022-09-19 00:18:24 +02:00 committed by GitHub
parent 25280f1497
commit 6460b4c96d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 {