mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-05 17:43:37 +00:00
Changing sorting order for email notification lists to alphabetical, ascending
This commit is contained in:
parent
071d51fcda
commit
71cd57927f
1 changed files with 1 additions and 1 deletions
|
@ -2624,7 +2624,7 @@ class Home:
|
|||
cherrypy.response.headers['Cache-Control'] = "max-age=0,no-cache,no-store"
|
||||
|
||||
mydb = db.DBConnection()
|
||||
rows = mydb.select("SELECT show_id, show_name, notify_list FROM tv_shows")
|
||||
rows = mydb.select("SELECT show_id, show_name, notify_list FROM tv_shows ORDER BY show_name ASC")
|
||||
data = {}
|
||||
size = 0
|
||||
for r in rows:
|
||||
|
|
Loading…
Reference in a new issue