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

pull/2299/head
Aaron Liu 2025-04-24 15:27:19 +08:00
parent 969e35192a
commit 55a3669a9e
1 changed files with 1 additions and 1 deletions

View File

@ -113,7 +113,7 @@ func (s *SingleShareService) Get(c *gin.Context) (*GetShareResponse, error) {
)
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)