diff options
Diffstat (limited to 'internal/db/comment.go')
-rw-r--r-- | internal/db/comment.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/db/comment.go b/internal/db/comment.go index c5caa69d..cdfc1695 100644 --- a/internal/db/comment.go +++ b/internal/db/comment.go @@ -395,7 +395,7 @@ func CreateRefComment(doer *User, repo *Repository, issue *Issue, content, commi var _ errutil.NotFound = (*ErrCommentNotExist)(nil) type ErrCommentNotExist struct { - args map[string]interface{} + args map[string]any } func IsErrCommentNotExist(err error) bool { @@ -418,7 +418,7 @@ func GetCommentByID(id int64) (*Comment, error) { if err != nil { return nil, err } else if !has { - return nil, ErrCommentNotExist{args: map[string]interface{}{"commentID": id}} + return nil, ErrCommentNotExist{args: map[string]any{"commentID": id}} } return c, c.LoadAttributes() } |