fix(dashboard): user avatar not shown in details popup (fix #2289)

This commit is contained in:
Aaron Liu
2025-04-24 15:27:19 +08:00
parent 969e35192a
commit 55a3669a9e

View File

@@ -113,7 +113,7 @@ func (s *SingleShareService) Get(c *gin.Context) (*GetShareResponse, error) {
) )
if share.Edges.User != nil { if share.Edges.User != nil {
uid = hashid.EncodeShareID(hasher, share.Edges.User.ID) uid = hashid.EncodeUserID(hasher, share.Edges.User.ID)
} }
siteUrl := dep.SettingProvider().SiteURL(c) siteUrl := dep.SettingProvider().SiteURL(c)