mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-07 10:33:38 +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"
|
cherrypy.response.headers['Cache-Control'] = "max-age=0,no-cache,no-store"
|
||||||
|
|
||||||
mydb = db.DBConnection()
|
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 = {}
|
data = {}
|
||||||
size = 0
|
size = 0
|
||||||
for r in rows:
|
for r in rows:
|
||||||
|
|
Loading…
Reference in a new issue