mirror of https://github.com/cloudreve/Cloudreve
fix(dashboard): user avatar not shown in details popup (fix #2289)
parent
969e35192a
commit
55a3669a9e
|
@ -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)
|
||||||
|
|
Loading…
Reference in New Issue