Fix Gopher collections query

This commit is contained in:
mnlg 2021-08-05 16:53:20 +02:00
parent c42439886c
commit 5be1938a8a
1 changed files with 1 additions and 1 deletions

View File

@ -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."}