mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-02 17:33:37 +00:00
Merge branch 'master' into develop
This commit is contained in:
commit
531491f30c
2 changed files with 7 additions and 2 deletions
|
@ -16,6 +16,11 @@
|
|||
|
||||
|
||||
|
||||
### 0.16.8 (2018-05-17 02:00:00 UTC)
|
||||
|
||||
* Fix changing master id via search method
|
||||
|
||||
|
||||
### 0.16.7 (2018-05-14 02:40:00 UTC)
|
||||
|
||||
* Fix name_parser_tests for test_extra_info_no_name
|
||||
|
|
|
@ -2210,9 +2210,9 @@ class Home(MainHandler):
|
|||
t = PageTemplate(web_handler=self, file='editShow.tmpl')
|
||||
t.submenu = self.HomeMenu()
|
||||
|
||||
t.expand_ids = all([kwargs.get('tvsrc'), kwargs.get('srcid')])
|
||||
t.expand_ids = all([kwargs.get('tvsrc'), helpers.tryInt(kwargs.get('srcid'))])
|
||||
t.tvsrc = int(kwargs.get('tvsrc', 0))
|
||||
t.srcid = kwargs.get('srcid')
|
||||
t.srcid = helpers.tryInt(kwargs.get('srcid'))
|
||||
|
||||
myDB = db.DBConnection()
|
||||
t.seasonResults = myDB.select(
|
||||
|
|
Loading…
Reference in a new issue