mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-03 05:58:08 -06:00
fix broken GetInstanceAccount selector (#311)
* fix broken GetInstanceAccount selector * patch tests
This commit is contained in:
parent
ff7c96caa3
commit
f3e36de78a
2 changed files with 4 additions and 4 deletions
|
|
@ -127,13 +127,13 @@ func (a *accountDB) GetInstanceAccount(ctx context.Context, domain string) (*gts
|
|||
|
||||
q := a.newAccountQ(account)
|
||||
|
||||
if domain == "" {
|
||||
if domain != "" {
|
||||
q = q.
|
||||
Where("account.username = ?", domain).
|
||||
Where("account.domain = ?", domain)
|
||||
} else {
|
||||
q = q.
|
||||
Where("account.username = ?", domain).
|
||||
Where("account.username = ?", a.config.Host).
|
||||
WhereGroup(" AND ", whereEmptyOrNull("domain"))
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue