Fixed dashboard
This commit is contained in:
parent
af85fd1033
commit
8d0aa54333
@ -32,18 +32,21 @@ func Get(ctx *aero.Context) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
followIDList := user.Following
|
followIDList := user.Following
|
||||||
|
var followingList []*arn.User
|
||||||
|
|
||||||
if len(followIDList) > maxFollowing {
|
if len(followIDList) > 0 {
|
||||||
followIDList = followIDList[:maxFollowing]
|
if len(followIDList) > maxFollowing {
|
||||||
|
followIDList = followIDList[:maxFollowing]
|
||||||
|
}
|
||||||
|
|
||||||
|
userList, err := arn.DB.GetMany("User", followIDList)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
return ctx.Error(500, "Error fetching followed users", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
followingList = userList.([]*arn.User)
|
||||||
}
|
}
|
||||||
|
|
||||||
userList, err := arn.DB.GetMany("User", followIDList)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
return ctx.Error(500, "Error fetching followed users", err)
|
|
||||||
}
|
|
||||||
|
|
||||||
followingList := userList.([]*arn.User)
|
|
||||||
|
|
||||||
return ctx.HTML(components.Dashboard(posts, followingList))
|
return ctx.HTML(components.Dashboard(posts, followingList))
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user