aboutsummaryrefslogtreecommitdiff
path: root/internal/db/comment.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/db/comment.go')
-rw-r--r--internal/db/comment.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/internal/db/comment.go b/internal/db/comment.go
index 14b350e8..c5caa69d 100644
--- a/internal/db/comment.go
+++ b/internal/db/comment.go
@@ -5,6 +5,7 @@
package db
import (
+ "context"
"fmt"
"strings"
"time"
@@ -94,7 +95,7 @@ func (c *Comment) AfterSet(colName string, _ xorm.Cell) {
func (c *Comment) loadAttributes(e Engine) (err error) {
if c.Poster == nil {
- c.Poster, err = GetUserByID(c.PosterID)
+ c.Poster, err = Users.GetByID(context.TODO(), c.PosterID)
if err != nil {
if IsErrUserNotExist(err) {
c.PosterID = -1