mirror of
https://github.com/go-gitea/gitea.git
synced 2025-08-10 18:53:58 +09:00
Replace deprecated Id method with ID (#2655)
This commit is contained in:
@ -76,7 +76,7 @@ func DeleteUserOpenID(openid *UserOpenID) (err error) {
|
||||
UID: openid.UID,
|
||||
}
|
||||
if openid.ID > 0 {
|
||||
deleted, err = x.Id(openid.ID).Delete(&address)
|
||||
deleted, err = x.ID(openid.ID).Delete(&address)
|
||||
} else {
|
||||
deleted, err = x.
|
||||
Where("openid=?", openid.URI).
|
||||
|
Reference in New Issue
Block a user