Removes redundant else in registry/session.go
Fixes #12523 Signed-off-by: Rick Wieman <git@rickw.nl>
This commit is contained in:
parent
24b89b7098
commit
5f2b051ec5
1 changed files with 2 additions and 1 deletions
|
@ -224,7 +224,8 @@ func (r *Session) GetRemoteTags(registries []string, repository string, token []
|
|||
|
||||
if res.StatusCode == 404 {
|
||||
return nil, fmt.Errorf("Repository not found")
|
||||
} else if res.StatusCode != 200 {
|
||||
}
|
||||
if res.StatusCode != 200 {
|
||||
continue
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue