Merge pull request #501 from mnlg/develop

Fix Gopher collections query
pull/525/head
Matt Baer 3 years ago committed by GitHub
commit 6e5f7e87d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      database.go

@ -1688,7 +1688,7 @@ func (db *datastore) GetPublicCollections(hostName string) (*[]Collection, error
FROM collections c
LEFT JOIN users u ON u.id = c.owner_id
WHERE c.privacy = 1 AND u.status = 0
ORDER BY id ASC`)
ORDER BY title ASC`)
if err != nil {
log.Error("Failed selecting public collections: %v", err)
return nil, impart.HTTPError{http.StatusInternalServerError, "Couldn't retrieve public collections."}

Loading…
Cancel
Save