mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
[GITEA] parseScope with owner/repo always sets owner to zero
(cherry picked from commit5ad65cdd19
) (cherry picked from commit1cc0aeb1eb
) (cherry picked from commit88634c2689
)
This commit is contained in:
parent
49f68518c2
commit
5f08b81ccc
1 changed files with 2 additions and 1 deletions
|
@ -77,9 +77,10 @@ func parseScope(ctx *context.PrivateContext, scope string) (ownerID, repoID int6
|
|||
if err != nil {
|
||||
return ownerID, repoID, err
|
||||
}
|
||||
ownerID = u.ID
|
||||
|
||||
if !found {
|
||||
return u.ID, repoID, nil
|
||||
return ownerID, repoID, nil
|
||||
}
|
||||
|
||||
r, err := repo_model.GetRepositoryByName(u.ID, repoName)
|
||||
|
|
Loading…
Reference in a new issue