Monorepo for Tangled tangled.org

appview/models: fix redundant indirection

PullSource already contains RepoAt, we do not have to access the
optional Repo field.

Signed-off-by: oppiliappan <me@oppi.li>

oppi.li 36015515 bb08649f

verified
Changed files
+1 -1
appview
models
+1 -1
appview/models/pull.go
··· 88 88 source.Branch = p.PullSource.Branch 89 89 source.Sha = p.LatestSha() 90 90 if p.PullSource.RepoAt != nil { 91 - s := p.PullSource.Repo.RepoAt().String() 91 + s := p.PullSource.RepoAt.String() 92 92 source.Repo = &s 93 93 } 94 94 }