This commit is contained in:
jdl
2026-06-10 20:13:11 +02:00
parent f89f5d5083
commit cd2ec23ccb
2 changed files with 37 additions and 1 deletions

View File

@@ -140,7 +140,7 @@ func (a *API) Network_Get(id int64) (*Network, error) {
}
func (a *API) Network_List() ([]*Network, error) {
const query = db.Network_SelectQuery + ` ORDER BY Name ASC`
const query = db.Network_SelectQuery + ` ORDER BY LocalDomain ASC`
return db.Network_List(a.db, query)
}