mirror of
https://gitea.phreedom.club/localhost_frssoft/bloat.git
synced 2024-11-13 08:19:20 +02:00
Avoid search call for empty query
This commit is contained in:
parent
2ee5c1709d
commit
a23fd4afaf
|
@ -583,9 +583,14 @@ func (svc *service) ServeUserSearchPage(c *model.Client,
|
|||
return
|
||||
}
|
||||
|
||||
results, err := c.Search(ctx, q, "statuses", 20, true, offset, id)
|
||||
if err != nil {
|
||||
return
|
||||
var results *mastodon.Results
|
||||
if len(q) > 0 {
|
||||
results, err = c.Search(ctx, q, "statuses", 20, true, offset, id)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
} else {
|
||||
results = &mastodon.Results{}
|
||||
}
|
||||
|
||||
if len(results.Statuses) == 20 {
|
||||
|
@ -643,9 +648,14 @@ func (svc *service) ServeSearchPage(c *model.Client,
|
|||
var nextLink string
|
||||
var title = "search"
|
||||
|
||||
results, err := c.Search(ctx, q, qType, 20, true, offset, "")
|
||||
if err != nil {
|
||||
return
|
||||
var results *mastodon.Results
|
||||
if len(q) > 0 {
|
||||
results, err = c.Search(ctx, q, qType, 20, true, offset, "")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
} else {
|
||||
results = &mastodon.Results{}
|
||||
}
|
||||
|
||||
if (qType == "accounts" && len(results.Accounts) == 20) ||
|
||||
|
|
Loading…
Reference in New Issue