fix: not enough argument lead to compile error

This commit is contained in:
LinkinStar 2022-11-24 11:24:11 +08:00
parent e937597afe
commit 5a16a24859
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ func (os *ObjService) GetUnreviewedRevisionInfo(ctx context.Context, objectID st
}
case constant.TagObjectType:
tagInfo, exist, err := os.tagRepo.GetTagByID(ctx, objectID)
tagInfo, exist, err := os.tagRepo.GetTagByID(ctx, objectID, true)
if err != nil {
return nil, err
}