appview/models: fix redundant indirection
PullSource already contains RepoAt, we do not have to access theoptional Repo field.Signed-off-by: oppiliappan <me@oppi.li>
oppi.li 2 months ago 36015515 bb08649f
··· 88 88 source.Branch = p.PullSource.Branch 89 89 source.Sha = p.LatestSha() 90 90 if p.PullSource.RepoAt != nil { 91 91 - s := p.PullSource.Repo.RepoAt().String() 91 91 + s := p.PullSource.RepoAt.String() 92 92 source.Repo = &s 93 93 } 94 94 }