You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
followers:=env.DB.Select("target_id").Where("actor_id = ? and following = true", id).Table("relationships")
168
168
varcommonFollowers []*models.Relationship
169
-
iferr:=env.DB.Preload("Target").Preload("Target.Attributes").Where("actor_id = ? and following = true and target_id in (?)", user.Actor.ObjectID, followers).Find(&commonFollowers).Error; err!=nil {
169
+
iferr:=env.DB.Scopes(models.PreloadRelationshipTarget).Where("actor_id = ? and following = true and target_id in (?)", user.Actor.ObjectID, followers).Find(&commonFollowers).Error; err!=nil {
0 commit comments