fmt + lint

This commit is contained in:
tsmethurst 2021-05-29 19:38:24 +02:00
commit 9ca354fe3c
6 changed files with 16 additions and 17 deletions

View file

@ -128,16 +128,16 @@ func (m *Module) SearchGETHandler(c *gin.Context) {
}
searchQuery := &model.SearchQuery{
AccountID: accountID,
MaxID: maxID,
MinID: minID,
Type: searchType,
AccountID: accountID,
MaxID: maxID,
MinID: minID,
Type: searchType,
ExcludeUnreviewed: excludeUnreviewed,
Query: query,
Resolve: resolve,
Limit: limit,
Offset: offset,
Following: following,
Query: query,
Resolve: resolve,
Limit: limit,
Offset: offset,
Following: following,
}
results, errWithCode := m.processor.SearchGet(authed, searchQuery)