From 7b29ac7128c1f15007ee8037721aff4e00425b0a Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 23 Mar 2021 22:32:23 +0100 Subject: [PATCH] Fix user uploaded avatars --- pkg/user/user.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/user/user.go b/pkg/user/user.go index 838097e386a..bbf397f2e5a 100644 --- a/pkg/user/user.go +++ b/pkg/user/user.go @@ -61,7 +61,7 @@ type User struct { EmailConfirmToken string `xorm:"varchar(450) null" json:"-"` AvatarProvider string `xorm:"varchar(255) null" json:"-"` - AvatarFileID int64 `xorn:"null" json:"-"` + AvatarFileID int64 `xorm:"null" json:"-"` // Issuer and Subject contain the issuer and subject from the source the user authenticated with. Issuer string `xorm:"text null" json:"-"`