Merge branch 'main' of github.com:superseriousbusiness/gotosocial into main
This commit is contained in:
commit
5facbed9c0
|
@ -1148,7 +1148,6 @@ func (ps *postgresService) GetNotificationsForAccount(accountID string, limit in
|
||||||
|
|
||||||
q := ps.conn.Model(¬ifications).Where("target_account_id = ?", accountID)
|
q := ps.conn.Model(¬ifications).Where("target_account_id = ?", accountID)
|
||||||
|
|
||||||
|
|
||||||
if maxID != "" {
|
if maxID != "" {
|
||||||
n := >smodel.Notification{}
|
n := >smodel.Notification{}
|
||||||
if err := ps.conn.Model(n).Where("id = ?", maxID).Select(); err != nil {
|
if err := ps.conn.Model(n).Where("id = ?", maxID).Select(); err != nil {
|
||||||
|
|
|
@ -228,7 +228,7 @@ func (p *processor) searchAccountByMention(authed *oauth.Auth, mention string, r
|
||||||
// if it's a local account we can skip a whole bunch of stuff
|
// if it's a local account we can skip a whole bunch of stuff
|
||||||
maybeAcct := >smodel.Account{}
|
maybeAcct := >smodel.Account{}
|
||||||
if domain == p.config.Host {
|
if domain == p.config.Host {
|
||||||
if p.db.GetLocalAccountByUsername(username, maybeAcct); err != nil {
|
if err = p.db.GetLocalAccountByUsername(username, maybeAcct); err != nil {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
foundAccount = maybeAcct
|
foundAccount = maybeAcct
|
||||||
|
|
Loading…
Reference in New Issue