This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

appview/repo: fix non-annotated tags not showing up in commit log

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

author
oppiliappan
committer
Tangled
date (Oct 17, 2025, 8:06 AM UTC) commit d845e13c parent 8fde032e change-id zzymyvuo
+5 -1
+5 -1
appview/repo/repo.go
··· 192 192 var tagResp types.RepoTagsResponse 193 193 if err := json.Unmarshal(tagBytes, &tagResp); err == nil { 194 194 for _, tag := range tagResp.Tags { 195 - tagMap[tag.Hash] = append(tagMap[tag.Hash], tag.Name) 195 + hash := tag.Hash 196 + if tag.Tag != nil { 197 + hash = tag.Tag.Target.String() 198 + } 199 + tagMap[hash] = append(tagMap[hash], tag.Name) 196 200 } 197 201 } 198 202 }